delete method
Implementation
@override
Future<JobDone> delete(String boxName, String key) async {
try {
final box = await openBox(boxName);
await box.delete(key);
return const JobDone();
} catch (e) {
throw DatabaseBridgeException(error: e);
}
}