selectCount method

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

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);
}