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