countLocal property

int countLocal
inherited

Counts all models of type T in local storage.

Implementation

int get countLocal {
  final result = db.select('SELECT count(*) FROM $internalType');
  return result.first['count(*)'];
}