visit method
Implementation
@override
ConstructorCall visit(OverflowBar widget) {
return ConstructorCall(
'OverflowBar',
NotNullMap.from({
'alignment': ArgumentEncoders.enumValue(widget.alignment),
'spacing': widget.spacing,
'overflowDirection':
ArgumentEncoders.enumValue(widget.overflowDirection),
'overflowSpacing': widget.overflowSpacing,
'children': ArgumentEncoders.widgetList(widget.children),
}));
}