copyWith method

InputStoryContentVideo copyWith({
  1. InputFile? video,
  2. List<int>? addedStickerFileIds,
  3. double? duration,
  4. double? coverFrameTimestamp,
  5. bool? isAnimation,
})

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,
);