MapOptions constructor Null safety

MapOptions(
  1. {ContextMode? contextMode,
  2. ConstrainMode? constrainMode,
  3. ViewportMode? viewportMode,
  4. NorthOrientation? orientation,
  5. bool? crossSourceCollisions,
  6. bool? optimizeForTerrain,
  7. Size? size,
  8. required double pixelRatio,
  9. GlyphsRasterizationOptions? glyphsRasterizationOptions}
)

Implementation

MapOptions({
  this.contextMode,
  this.constrainMode,
  this.viewportMode,
  this.orientation,
  this.crossSourceCollisions,
  this.optimizeForTerrain,
  this.size,
  required this.pixelRatio,
  this.glyphsRasterizationOptions,
});