GeoStyle constructor

GeoStyle({
  1. String? id,
  2. LineStyle? lineStyle,
  3. PolyStyle? polyStyle,
  4. IconStyle? iconStyle,
  5. LabelStyle? labelStyle,
  6. BalloonStyle? balloonStyle,
})

Implementation

GeoStyle({
  this.id,
  this.lineStyle,
  this.polyStyle,
  this.iconStyle,
  this.labelStyle,
  this.balloonStyle,
  // this.listStyle,
});