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