HighlightWrapper constructor
const
HighlightWrapper({
- Key? key,
- required Widget child,
- required HighlightType type,
- Color color = Colors.blue,
- double intensity = 2.0,
- Duration duration = const Duration(milliseconds: 1500),
- bool repeat = true,
- EdgeInsets padding = const EdgeInsets.all(16.0),
Implementation
const HighlightWrapper({
super.key,
required this.child,
required this.type,
this.color = Colors.blue,
this.intensity = 2.0,
this.duration = const Duration(milliseconds: 1500),
this.repeat = true,
this.padding = const EdgeInsets.all(16.0),
});