copyWith method
PageBlockPhoto
copyWith({
- Photo? photo,
- PageBlockCaption? caption,
- String? url,
- bool? hasSpoiler,
Implementation
PageBlockPhoto copyWith({
Photo? photo,
PageBlockCaption? caption,
String? url,
bool? hasSpoiler,
}) => PageBlockPhoto(
photo: photo ?? this.photo,
caption: caption ?? this.caption,
url: url ?? this.url,
hasSpoiler: hasSpoiler ?? this.hasSpoiler,
);