getWidget method

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

Assemble and return the widget.

Implementation

@override
Widget getWidget(BuildContext context) {
  return Column(
    key: elParams.p.key,
    mainAxisAlignment: elParams.p.mainAxisAlignment,
    mainAxisSize: elParams.p.mainAxisSize,
    crossAxisAlignment: elParams.p.crossAxisAlignment,
    textDirection: elParams.p.textDirection,
    verticalDirection: elParams.p.verticalDirection,
    textBaseline: elParams.p.textBaseline,
    children: elParams.p.children ?? children.getChildren(),
  );
}