buildCustom method

  1. @override
CircularProgressIndicator buildCustom({
  1. ChildWidgetBuilder? childBuilder,
  2. required BuildContext context,
  3. required JsonWidgetData data,
  4. Key? key,
})

Custom builder that subclasses must override and implement to return the actual Widget to be placed on the tree.

Implementation

@override
CircularProgressIndicator buildCustom({
  ChildWidgetBuilder? childBuilder,
  required BuildContext context,
  required JsonWidgetData data,
  Key? key,
}) {
  final model = createModel(
    childBuilder: childBuilder,
    data: data,
  );

  final strokeAlignDecoded = _decodeStrokeAlign(
    value: model.strokeAlign,
  );
  final valueColorDecoded = _decodeValueColor(
    value: model.valueColor,
  );

  return CircularProgressIndicator(
    backgroundColor: model.backgroundColor,
    color: model.color,
    key: key,
    semanticsLabel: model.semanticsLabel,
    semanticsValue: model.semanticsValue,
    strokeAlign: strokeAlignDecoded,
    strokeCap: model.strokeCap,
    strokeWidth: model.strokeWidth,
    value: model.value,
    valueColor: valueColorDecoded,
  );
}