copyWith method
Implementation
InputStoryContentVideo copyWith({
InputFile? video,
List<int>? addedStickerFileIds,
double? duration,
double? coverFrameTimestamp,
bool? isAnimation,
}) => InputStoryContentVideo(
video: video ?? this.video,
addedStickerFileIds: addedStickerFileIds ?? this.addedStickerFileIds,
duration: duration ?? this.duration,
coverFrameTimestamp: coverFrameTimestamp ?? this.coverFrameTimestamp,
isAnimation: isAnimation ?? this.isAnimation,
);