PointerConfig constructor
const
PointerConfig({
- PointerStyle style = PointerStyle.triangle,
- Color color = Colors.red,
- double size = 20.0,
- PointerPosition position = PointerPosition.start,
- Widget? customPointer,
- Color? borderColor,
- double borderWidth = 0.0,
- bool hasShadow = true,
Creates a pointer configuration.
Implementation
// ignore: sort_constructors_first
const PointerConfig({
this.style = PointerStyle.triangle,
this.color = Colors.red,
this.size = 20.0,
this.position = PointerPosition.start,
this.customPointer,
this.borderColor,
this.borderWidth = 0.0,
this.hasShadow = true,
});