MapTheme constructor

MapTheme({
  1. Color? color,
  2. Color? contourColor,
  3. LabelVisibility? labelVisibility,
  4. LabelStyleBuilder? labelStyleBuilder,
  5. MarkerBuilder? markerBuilder,
})

Builds a VectorMap

Implementation

MapTheme(
    {Color? color,
    this.contourColor,
    this.labelVisibility,
    this.labelStyleBuilder,
    MarkerBuilder? markerBuilder})
    : this._color = color,
      this.markerBuilder =
          markerBuilder != null ? markerBuilder : CircleMakerBuilder.fixed();