copyWith method
ChatEventInviteLinkEdited
copyWith({
- ChatInviteLink? oldInviteLink,
- ChatInviteLink? newInviteLink,
override
Implementation
@override
ChatEventInviteLinkEdited copyWith({
ChatInviteLink? oldInviteLink,
ChatInviteLink? newInviteLink,
}) => ChatEventInviteLinkEdited(
oldInviteLink: oldInviteLink ?? this.oldInviteLink,
newInviteLink: newInviteLink ?? this.newInviteLink,
);