copyWith method

ChatEventMemberJoinedByRequest copyWith({
  1. int? approverUserId,
  2. ChatInviteLink? inviteLink,
})

Implementation

ChatEventMemberJoinedByRequest copyWith({
  int? approverUserId,
  ChatInviteLink? inviteLink,
}) => ChatEventMemberJoinedByRequest(
  approverUserId: approverUserId ?? this.approverUserId,
  inviteLink: inviteLink ?? this.inviteLink,
);