GeoJsonStyleDefaults constructor

const GeoJsonStyleDefaults({
  1. Color markerColor = const Color(0xff7e7e7e),
  2. String markerSize = 'medium',
  3. Color strokeColor = const Color(0xff555555),
  4. double strokeOpacity = 1.0,
  5. double strokeWidth = 2.0,
  6. Color fillColor = const Color(0xff555555),
  7. double fillOpacity = 0.6,
})

Implementation

const GeoJsonStyleDefaults({
  this.markerColor = const Color(0xff7e7e7e),
  this.markerSize = 'medium',
  this.strokeColor = const Color(0xff555555),
  this.strokeOpacity = 1.0,
  this.strokeWidth = 2.0,
  this.fillColor = const Color(0xff555555),
  this.fillOpacity = 0.6,
});