EmergentIndicator constructor
const
EmergentIndicator({
- Key? key,
- double percent = 0.5,
- EmergentIndicatorOrientation orientation = EmergentIndicatorOrientation.vertical,
- double height = double.maxFinite,
- EdgeInsets padding = EdgeInsets.zero,
- double width = double.maxFinite,
- IndicatorStyle style = const IndicatorStyle(),
- Duration duration = const Duration(milliseconds: 300),
- Curve curve = Curves.easeOutCubic,
Implementation
const EmergentIndicator({
Key? key,
this.percent = 0.5,
this.orientation = EmergentIndicatorOrientation.vertical,
this.height = double.maxFinite,
this.padding = EdgeInsets.zero,
this.width = double.maxFinite,
this.style = const IndicatorStyle(),
this.duration = const Duration(milliseconds: 300),
this.curve = Curves.easeOutCubic,
}) : super(key: key);