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