copyWith method

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

Implementation

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