MarkerSettings constructor

const MarkerSettings({
  1. bool isVisible = false,
  2. Color? color,
  3. DataMarkerType shape = DataMarkerType.circle,
  4. double height = 8.0,
  5. double width = 8.0,
  6. Color? borderColor,
  7. double borderWidth = 2.0,
  8. ImageProvider<Object>? image,
})

Creating an argument constructor of MarkerSettings class.

Implementation

const MarkerSettings({
  this.isVisible = false,
  this.color,
  this.shape = DataMarkerType.circle,
  this.height = 8.0,
  this.width = 8.0,
  this.borderColor,
  this.borderWidth = 2.0,
  this.image,
});