copyWith method
Implementation
InternalLinkTypePublicChat copyWith({
String? chatUsername,
String? draftText,
bool? openProfile,
}) => InternalLinkTypePublicChat(
chatUsername: chatUsername ?? this.chatUsername,
draftText: draftText ?? this.draftText,
openProfile: openProfile ?? this.openProfile,
);