count method

Future<int?> count(
  1. {required String table,
  2. String? where,
  3. String columns = "id",
  4. bool verbose = false}
)

count rows in a table

Implementation

Future<int?> count(
        {required String table,
        String? where,
        String columns = "id",
        bool verbose = false}) async =>
    _db.count(table: table, where: where, columns: columns, verbose: verbose);