delete method
- ChatId id
Deletes the Rect identified by the provided id
from the database.
Implementation
Future<void> delete(ChatId id) async {
_cache.remove(id);
await safe((db) async {
final stmt = db.delete(db.callRectangles)
..where((e) => e.chatId.equals(id.val));
await stmt.go();
});
}