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