copyWith method
Implementation
Photo copyWith({
int? height,
List<String>? htmlAttributions,
String? photoReference,
int? width,
}) {
return Photo(
height: height ?? this.height,
htmlAttributions: htmlAttributions ?? this.htmlAttributions,
photoReference: photoReference ?? this.photoReference,
width: width ?? this.width,
);
}