call method
Returns a new FleetFlex with the given children
.
Implementation
@widgetFactory
FleetFlex call(List<Widget> children) {
return FleetFlex(
direction: direction,
mainAxisAlignment: mainAxisAlignment,
mainAxisSize: mainAxisSize,
crossAxisAlignment: crossAxisAlignment,
textDirection: textDirection,
verticalDirection: verticalDirection,
textBaseline: textBaseline,
clipBehavior: clipBehavior,
spacing: spacing,
children: children,
);
}