query method

Future<List<Map<String, dynamic>>> query(
  1. String table, {
  2. String? where,
  3. List? whereArgs,
  4. String? orderBy,
  5. int? limit,
  6. int? offset,
})

Query data from the database

Implementation

Future<List<Map<String, dynamic>>> query(
  String table, {
  String? where,
  List<dynamic>? whereArgs,
  String? orderBy,
  int? limit,
  int? offset,
}) {
  throw UnimplementedError('query() has not been implemented.');
}