copyWith method
Implementation
LatLngBounds copyWith({
LatLng? southWest,
LatLng? northEast,
}) {
return LatLngBounds(
southWest: southWest ?? this.southWest,
northEast: northEast ?? this.northEast,
);
}
LatLngBounds copyWith({
LatLng? southWest,
LatLng? northEast,
}) {
return LatLngBounds(
southWest: southWest ?? this.southWest,
northEast: northEast ?? this.northEast,
);
}