TrackballMarkerSettings constructor

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

Creating an argument constructor of TrackballMarkerSettings class.

Implementation

const TrackballMarkerSettings({
  this.markerVisibility = TrackballVisibilityMode.auto,
  super.height,
  super.width,
  super.color,
  super.shape,
  super.borderWidth,
  super.borderColor,
  super.image,
});