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