MapCamera constructor

const MapCamera({
  1. required Geographic center,
  2. required double zoom,
  3. required double bearing,
  4. required double pitch,
})

Default constructor for a MapCamera.

Implementation

const MapCamera({
  required this.center,
  required this.zoom,
  required this.bearing,
  required this.pitch,
});