copyWith method
Implementation
LocationMultiArea copyWith({Circle? circle, Rectangle? rectangle}) {
return LocationMultiArea(
circle: circle ?? this.circle,
rectangle: rectangle ?? this.rectangle,
);
}
LocationMultiArea copyWith({Circle? circle, Rectangle? rectangle}) {
return LocationMultiArea(
circle: circle ?? this.circle,
rectangle: rectangle ?? this.rectangle,
);
}