conditionalQuery static method

Future<List<Map<String, dynamic>>> conditionalQuery(
  1. String table,
  2. String where,
  3. String searchString
)

Implementation

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