visit method

  1. @override
ConstructorCall visit(
  1. covariant CircularProgressIndicator widget
)
override

Implementation

@override
ConstructorCall visit(CircularProgressIndicator widget) {
  return ConstructorCall(
      'CircularProgressIndicator',
      NotNullMap.from({
        'value': widget.value,
        'color': ArgumentEncoders.color(widget.color),
        'backgroundColor': ArgumentEncoders.color(widget.backgroundColor),
        'strokeWidth': widget.strokeWidth,
        'semanticsLabel': ArgumentEncoders.string(widget.semanticsLabel),
        'semanticsValue': ArgumentEncoders.string(widget.semanticsValue),
      }));
}