copyWith method
Implementation
CameraZoomRestrictions copyWith({
Zoom? minZoom,
Zoom? maxZoom
}) {
return CameraZoomRestrictions(
minZoom: minZoom ?? this.minZoom,
maxZoom: maxZoom ?? this.maxZoom
);
}
CameraZoomRestrictions copyWith({
Zoom? minZoom,
Zoom? maxZoom
}) {
return CameraZoomRestrictions(
minZoom: minZoom ?? this.minZoom,
maxZoom: maxZoom ?? this.maxZoom
);
}