getCacheSize method

Future<int> getCacheSize()

Implementation

Future<int> getCacheSize() async {
  return await _database?.count() ?? 0;
}