World50mWidget constructor

const World50mWidget({
  1. Key? key,
  2. required Projection projection,
  3. Color? fillColor,
  4. Color? strokeColor,
  5. double strokeWidth = 1.0,
  6. void onFeatureTap(
    1. GeoJsonFeature feature,
    2. Point position
    )?,
  7. bool antiAlias = true,
})

Creates a World50mWidget.

Implementation

const World50mWidget({
  super.key,
  required this.projection,
  this.fillColor,
  this.strokeColor,
  this.strokeWidth = 1.0,
  this.onFeatureTap,
  this.antiAlias = true,
});