copyWith method
Implementation
ChatInviteLinkCount copyWith({
int? userId,
int? inviteLinkCount,
int? revokedInviteLinkCount,
}) =>
ChatInviteLinkCount(
userId: userId ?? this.userId,
inviteLinkCount: inviteLinkCount ?? this.inviteLinkCount,
revokedInviteLinkCount:
revokedInviteLinkCount ?? this.revokedInviteLinkCount,
);