query method
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.');
}