copyWith method
Implementation
InputPageBlockVideo copyWith({
InputVideo? video,
PageBlockCaption? caption,
bool? hasSpoiler,
}) => InputPageBlockVideo(
video: video ?? this.video,
caption: caption ?? this.caption,
hasSpoiler: hasSpoiler ?? this.hasSpoiler,
);