copyWith method

  1. @override
InputChatPhotoAnimation copyWith({
  1. InputFile? animation,
  2. double? mainFrameTimestamp,
})
override

Implementation

@override
InputChatPhotoAnimation copyWith({
  InputFile? animation,
  double? mainFrameTimestamp,
}) =>
    InputChatPhotoAnimation(
      animation: animation ?? this.animation,
      mainFrameTimestamp: mainFrameTimestamp ?? this.mainFrameTimestamp,
    );