selectCount method

Future<int?> selectCount(
  1. String tableName, {
  2. String? where,
  3. List<Object?>? whereArgs,
})

Select count

Implementation

Future<int?> selectCount(String tableName, {String? where, List<Object?>? whereArgs}) async {
  return await BoxerDatabaseUtil.selectCount(database, tableName, where: where, whereArgs: whereArgs);
}