SimpleMarkerSymbol constructor

const SimpleMarkerSymbol({
  1. required Color color,
  2. double colorOpacity = 1,
  3. required Color outlineColor,
  4. double outlineColorOpacity = 1,
  5. int outlineWidth = 2,
  6. int radius = 4,
})

Implementation

const SimpleMarkerSymbol({
  required this.color,
  this.colorOpacity = 1,
  required this.outlineColor,
  this.outlineColorOpacity = 1,
  this.outlineWidth = 2,
  this.radius = 4,
});