FitBoundsOptions constructor

const FitBoundsOptions({
  1. EdgeInsets padding = const EdgeInsets.all(0.0),
  2. double maxZoom = 17.0,
  3. double? zoom,
  4. bool inside = false,
})

Implementation

const FitBoundsOptions({
  this.padding = const EdgeInsets.all(0.0),
  this.maxZoom = 17.0,
  this.zoom,
  this.inside = false,
});