TrackballMarkerSettings constructor
const
TrackballMarkerSettings({
- TrackballVisibilityMode markerVisibility = TrackballVisibilityMode.auto,
- double? height,
- double? width,
- Color? color,
- DataMarkerType? shape,
- double? borderWidth,
- Color? borderColor,
- 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);