copyWith method
Implementation
@override
InternalLinkTypePublicChat copyWith({
String? chatUsername,
dynamic extra,
int? clientId,
}) => InternalLinkTypePublicChat(
chatUsername: chatUsername ?? this.chatUsername,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);