MapBubbleSettings constructor

const MapBubbleSettings({
  1. double minRadius = 10.0,
  2. double maxRadius = 50.0,
  3. Color? color,
  4. double? strokeWidth,
  5. Color? strokeColor,
})

Creates a MapBubbleSettings.

Implementation

const MapBubbleSettings({
  this.minRadius = 10.0,
  this.maxRadius = 50.0,
  this.color,
  this.strokeWidth,
  this.strokeColor,
});