selectCount method
Number of rows in current table, null if result mismatch
Implementation
Future<int?> selectCount({String? where, List<Object?>? whereArgs}) async {
return await BoxerDatabaseUtil.selectCount(executor, tableName, where: where, whereArgs: whereArgs);
}