TrackballMarkerSettings constructor

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

Creating an argument constructor of TrackballMarkerSettings class.

Implementation

const TrackballMarkerSettings(
    {this.markerVisibility = TrackballVisibilityMode.auto,
    double? height,
    double? width,
    Color? color,
    DataMarkerType? shape,
    double? borderWidth,
    Color? borderColor,
    ImageProvider? image})
    : super(
          height: height,
          width: width,
          color: color,
          shape: shape,
          borderWidth: borderWidth,
          borderColor: borderColor,
          image: image);