deleteAll method
Delete All Box<List<T>>
Implementation
Future<void> deleteAll() async {
final values = await getAll();
final ids = values.map((e) => _adapter.getId(e)).toList();
await _indexedDB.deleteAllByIdList(ids);
}
Box<List<T>>Future<void> deleteAll() async {
final values = await getAll();
final ids = values.map((e) => _adapter.getId(e)).toList();
await _indexedDB.deleteAllByIdList(ids);
}