copyWith method

CreateChatFolderInviteLink copyWith({
  1. int? chatFolderId,
  2. String? name,
  3. List<int>? chatIds,
})

Implementation

CreateChatFolderInviteLink copyWith({
  int? chatFolderId,
  String? name,
  List<int>? chatIds,
}) =>
    CreateChatFolderInviteLink(
      chatFolderId: chatFolderId ?? this.chatFolderId,
      name: name ?? this.name,
      chatIds: chatIds ?? this.chatIds,
    );