copyWith method

InternalLinkTypeVideoChat copyWith({
  1. String? chatUsername,
  2. String? inviteHash,
  3. bool? isLiveStream,
})

Implementation

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