OverlappingProgressIndicator constructor

const OverlappingProgressIndicator({
  1. Key? key,
  2. RadData radData = RadData.horizontal,
  3. Size? contextSize,
  4. int? graphCount,
  5. double? minHeight,
  6. GlobalKey<State<StatefulWidget>>? globalKey,
  7. String? textValue,
  8. double? animationValue,
  9. TextSpan? textSpan,
  10. CustomPaint? setPaint,
  11. required double boxSize,
  12. required double foldHeight,
  13. required BuildContext con,
  14. required List<String> dialogData,
  15. 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,
      );