call method

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

Returns a new FleetRow with the given children.

Implementation

@widgetFactory
FleetRow call(List<Widget> children) {
  return FleetRow(
    mainAxisAlignment: mainAxisAlignment,
    mainAxisSize: mainAxisSize,
    crossAxisAlignment: crossAxisAlignment,
    textDirection: textDirection,
    verticalDirection: verticalDirection,
    textBaseline: textBaseline,
    clipBehavior: clipBehavior,
    spacing: spacing,
    children: children,
  );
}