removeConversation static method
dynamic
removeConversation(
- dynamic id
Implementation
static removeConversation(id) async {
UserStatusHelper.setMyLastSeenAt();
await getFromTable('chats').delete().eq('id', id);
}