how to query with List<String> in IN OPERATOR – flutter/dart with PostgreSQL
I'm trying to fetch records from PostgreSQL DB by applying filters (where condition with IN operator). However Something wrong while converting string to iterable element. suggestions will be appreciated. List<dynamic> detailedPositions = []; Future<List<dynamic>> fetchDetailedPositions(String custID) async { try {…