OverlappingProgressIndicator constructor
const
OverlappingProgressIndicator({
- Key? key,
- RadData radData = RadData.horizontal,
- Size? contextSize,
- int? graphCount,
- double? minHeight,
- GlobalKey<
State< ? globalKey,StatefulWidget> > - String? textValue,
- double? animationValue,
- TextSpan? textSpan,
- CustomPaint? setPaint,
- required double boxSize,
- required double foldHeight,
- required BuildContext con,
- required List<
String> dialogData, - required StreamController<
List> streamController,
Implementation
const OverlappingProgressIndicator({
super.key,
RadData radData = RadData.horizontal,
Size? contextSize,
int? graphCount,
this.minHeight,
GlobalKey? globalKey,
String? textValue,
double? animationValue,
TextSpan? textSpan,
CustomPaint? setPaint,
required double boxSize,
required double foldHeight,
required BuildContext con,
required List<String> dialogData,
required StreamController<List<dynamic>> streamController,
}) : assert(minHeight == null || minHeight > 0),
super(
radData: radData,
globalKey: globalKey,
animationValue: animationValue,
textSpan: textSpan,
contextSize: contextSize,
graphCount: graphCount,
setPaint: setPaint,
boxSize: boxSize,
navigationHeight: foldHeight,
con: con,
dialogData: dialogData,
streamController: streamController,
);