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