removeChatList method

dynamic removeChatList(
  1. RxList<ChatMessageModel> selectedChatList
)

Implementation

removeChatList(RxList<ChatMessageModel> selectedChatList) {
  for (var chatList in selectedChatList) {
    this.chatList.remove(chatList);
  }
}