copyWith method
Implementation
CameraPosition copyWith({
GeoPoint? point,
Zoom? zoom,
Tilt? tilt,
Bearing? bearing
}) {
return CameraPosition(
point: point ?? this.point,
zoom: zoom ?? this.zoom,
tilt: tilt ?? this.tilt,
bearing: bearing ?? this.bearing
);
}