Projection constructor

const Projection({
  1. Bounds? bounds,
  2. Tuple2<double, double>? latBounds = const Tuple2(-90.0, 90.0),
  3. Tuple2<double, double>? lngBounds = const Tuple2(-180.0, 180.0),
})

Implementation

const Projection({
  this.bounds,
  this.latBounds = const Tuple2(-90.0, 90.0),
  this.lngBounds = const Tuple2(-180.0, 180.0),
});