query method

Future<List<Map<String, dynamic>>> query(
  1. String table, {
  2. List<String>? columns,
  3. bool? distinct,
  4. String? where,
  5. List<Object?>? whereArgs,
  6. String? groupBy,
  7. String? having,
  8. String? orderBy,
  9. int? limit,
  10. int? offset,
})

Returns a list of record from the specified data table based on its where clause

Implementation

Future<List<Map<String, dynamic>>> query(String table,
    {List<String>? columns,
    bool? distinct,
    String? where,
    List<Object?>? whereArgs,
    String? groupBy,
    String? having,
    String? orderBy,
    int? limit,
    int? offset}) {
  throw UnimplementedError();
}