deleteAllJsonRecords method
Delete All Json Records
Implementation
Future<void> deleteAllJsonRecords() async {
for (var rc in await readAllJson()) {
await removeRecord(rc, isCallMabyCompact: false);
}
await _indexedDB.mabyCompact();
}
Future<void> deleteAllJsonRecords() async {
for (var rc in await readAllJson()) {
await removeRecord(rc, isCallMabyCompact: false);
}
await _indexedDB.mabyCompact();
}