copyWith method

  1. @override
ChatEventInviteLinkEdited copyWith({
  1. ChatInviteLink? oldInviteLink,
  2. ChatInviteLink? newInviteLink,
})
override

Implementation

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