conditionalQuery static method
Implementation
static Future<List<Map<String, dynamic>>> conditionalQuery(
String table, String where, String searchString) async =>
_db!.query(
table,
where: where,
whereArgs: [searchString],
);