NiceSpotlight constructor
const
NiceSpotlight({
- Key? key,
- required Widget child,
- required String title,
- String? description,
- NiceSpotlightPosition position = NiceSpotlightPosition.bottom,
- bool visible = false,
- VoidCallback? onDismiss,
- VoidCallback? onNext,
- String? dismissLabel,
- String? nextLabel,
- double padding = 8,
Implementation
const NiceSpotlight({
super.key,
required this.child,
required this.title,
this.description,
this.position = NiceSpotlightPosition.bottom,
this.visible = false,
this.onDismiss,
this.onNext,
this.dismissLabel,
this.nextLabel,
this.padding = 8,
});