CameraPosition constructor
const
CameraPosition({})
Creates a immutable representation of the GoogleMap
camera.
AssertionError is thrown if bearing
, target
, tilt
, or zoom
are
null.
Implementation
const CameraPosition({
this.bearing = 0.0,
required this.target,
this.tilt = 0.0,
this.zoom = 0.0,
});