getMemoryDb property

Map<String, List<Map<String, dynamic>>> getMemoryDb

get the actual memory db Object(data stored on this object)

Implementation

Map<String, List<Map<String, dynamic>>> get getMemoryDb {
  if (_app.dbSettings.memoryDBProvider == null) {
    throw NoMemoryDbProviderExceptions();
  }
  return _app.dbSettings.memoryDBProvider!.memoryDb;
}