copyWith method
Implementation
PlaceDetailResponse copyWith({
List<dynamic>? htmlAttributions,
PlaceDetails? result,
String? status,
}) {
return PlaceDetailResponse(
htmlAttributions: htmlAttributions ?? this.htmlAttributions,
result: result ?? this.result,
status: status ?? this.status,
);
}