unPinChats method

dynamic unPinChats()

Implementation

unPinChats() {
  if (selectedChats.length == 1) {
    _itemUnPin(0);
    clearAllChatSelection();
    toToast(AppConstants.chatUnPinned);
  } else {
    selected(false);
    selectedChats.asMap().forEach((key, value) {
      _itemUnPin(key);
    });
    clearAllChatSelection();
    toToast(AppConstants.chatsUnPinned);
  }
}