call method

  1. @widgetFactory
Wrap call(
  1. List<Widget> children
)

Returns a new Wrap with the given children.

Implementation

@widgetFactory
Wrap call(List<Widget> children) {
  return Wrap(
    direction: direction,
    alignment: alignment,
    spacing: spacing,
    runAlignment: runAlignment,
    runSpacing: runSpacing,
    crossAxisAlignment: crossAxisAlignment,
    textDirection: textDirection,
    verticalDirection: verticalDirection,
    clipBehavior: clipBehavior,
    children: children,
  );
}