copyWith method
Implementation
InternalLinkTypeVideoChat copyWith({
String? chatUsername,
String? inviteHash,
bool? isLiveStream,
}) => InternalLinkTypeVideoChat(
chatUsername: chatUsername ?? this.chatUsername,
inviteHash: inviteHash ?? this.inviteHash,
isLiveStream: isLiveStream ?? this.isLiveStream,
);