copyWith method
Implementation
InputAnimation copyWith({
InputFile? animation,
InputThumbnail? thumbnail,
List<int>? addedStickerFileIds,
int? duration,
int? width,
int? height,
}) => InputAnimation(
animation: animation ?? this.animation,
thumbnail: thumbnail ?? this.thumbnail,
addedStickerFileIds: addedStickerFileIds ?? this.addedStickerFileIds,
duration: duration ?? this.duration,
width: width ?? this.width,
height: height ?? this.height,
);