copyWith method

AnimatedChatPhoto copyWith({
  1. int? length,
  2. File? file,
  3. double? mainFrameTimestamp,
})

Implementation

AnimatedChatPhoto copyWith({
  int? length,
  File? file,
  double? mainFrameTimestamp,
}) => AnimatedChatPhoto(
  length: length ?? this.length,
  file: file ?? this.file,
  mainFrameTimestamp: mainFrameTimestamp ?? this.mainFrameTimestamp,
);