copyWith method
ChatFolderInviteLinkInfo
copyWith({
- ChatFolderInfo? chatFolderInfo,
- List<
int> ? missingChatIds, - 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,
);