copyWith method

GetChatListsToAddChat copyWith({
  1. int? chatId,
})

Implementation

GetChatListsToAddChat copyWith({
  int? chatId,
}) => GetChatListsToAddChat(
  chatId: chatId ?? this.chatId,
);