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