copyWith method
Implementation
InputPageBlockPhoto copyWith({
InputPhoto? photo,
PageBlockCaption? caption,
bool? hasSpoiler,
}) => InputPageBlockPhoto(
photo: photo ?? this.photo,
caption: caption ?? this.caption,
hasSpoiler: hasSpoiler ?? this.hasSpoiler,
);