visit method

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

Implementation

@override
ConstructorCall visit(Placeholder widget) {
  return ConstructorCall(
      'Placeholder',
      NotNullMap.from({
        'color': ArgumentEncoders.color(widget.color),
        'strokeWidth': widget.strokeWidth,
        'fallbackWidth': widget.fallbackWidth,
        'fallbackHeight': widget.fallbackHeight,
      }));
}