clear method
Deletes all the PreciseDateTimes stored in the database.
Implementation
Future<void> clear() async {
await safe((db) async {
await db.delete(db.callKitCalls).go();
});
}
Deletes all the PreciseDateTimes stored in the database.
Future<void> clear() async {
await safe((db) async {
await db.delete(db.callKitCalls).go();
});
}