readAll method

Future<List<DatabaseRecord>> readAll()

Read All Active Records

Implementation

Future<List<DatabaseRecord>> readAll() async {
  if (!isOpened) throw Exception('You Should Call -> SMDB.open()');
  return _indexedDB.allActiveRecordList;
}