visit method
Implementation
@override
ConstructorCall visit(VerticalDivider widget) {
return ConstructorCall(
'VerticalDivider',
NotNullMap.from({
'width': widget.width,
'thickness': widget.thickness,
'indent': widget.indent,
'endIndent': widget.endIndent,
'color': ArgumentEncoders.color(widget.color),
}));
}