copyWith method

ChatFolderInviteLinkInfo copyWith({
  1. ChatFolderInfo? chatFolderInfo,
  2. List<int>? missingChatIds,
  3. List<int>? addedChatIds,
})

Implementation

ChatFolderInviteLinkInfo copyWith({
  ChatFolderInfo? chatFolderInfo,
  List<int>? missingChatIds,
  List<int>? addedChatIds,
}) => ChatFolderInviteLinkInfo(
  chatFolderInfo: chatFolderInfo ?? this.chatFolderInfo,
  missingChatIds: missingChatIds ?? this.missingChatIds,
  addedChatIds: addedChatIds ?? this.addedChatIds,
);