copyWith method
InputVideoNote
copyWith({
- InputFile? videoNote,
- InputThumbnail? thumbnail,
- int? duration,
- int? length,
Implementation
InputVideoNote copyWith({
InputFile? videoNote,
InputThumbnail? thumbnail,
int? duration,
int? length,
}) => InputVideoNote(
videoNote: videoNote ?? this.videoNote,
thumbnail: thumbnail ?? this.thumbnail,
duration: duration ?? this.duration,
length: length ?? this.length,
);