copyWith method
Area
copyWith({
- String? name,
- String? placeId,
- LocalizedText? displayName,
- Containment? containment,
Implementation
Area copyWith({
String? name,
String? placeId,
LocalizedText? displayName,
Containment? containment,
}) {
return Area(
name: name ?? this.name,
placeId: placeId ?? this.placeId,
displayName: displayName ?? this.displayName,
containment: containment ?? this.containment,
);
}