removeConversation static method

dynamic removeConversation(
  1. dynamic id
)

Implementation

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