copyWith method
Implementation
@override
MessageVideo copyWith({
Video? video,
FormattedText? caption,
bool? isSecret,
}) => MessageVideo(
video: video ?? this.video,
caption: caption ?? this.caption,
isSecret: isSecret ?? this.isSecret,
);