copyWith method

AddChatToList copyWith({
  1. int? chatId,
  2. ChatList? chatList,
})

Implementation

AddChatToList copyWith({
  int? chatId,
  ChatList? chatList,
}) => AddChatToList(
  chatId: chatId ?? this.chatId,
  chatList: chatList ?? this.chatList,
);