getWidget method

  1. @override
Widget getWidget(
  1. BuildContext context
)
override

Assemble and return the widget.

Implementation

@override
Widget getWidget(BuildContext context) {
  return Wrap(
    key: elParams.p.key,
    direction: elParams.p.direction,
    alignment: elParams.p.alignment,
    spacing: elParams.p.spacing,
    runAlignment: elParams.p.runAlignment,
    runSpacing: elParams.p.runSpacing,
    crossAxisAlignment: elParams.p.crossAxisAlignment,
    textDirection: elParams.p.textDirection,
    verticalDirection: elParams.p.verticalDirection,
    clipBehavior: elParams.p.clipBehavior,
    children: elParams.p.children ?? children.getChildren(),
  );
}