exists method

Future<bool> exists({
  1. required String table,
  2. required String where,
  3. bool verbose = false,
})

Check if a value exists in the table

Implementation

Future<bool> exists(
        {required String table,
        required String where,
        bool verbose = false}) async =>
    _db.exists(table: table, where: where, verbose: verbose);