getWidget method

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

Assemble and return the widget.

Implementation

@override
Widget getWidget(BuildContext context) {
  return Table(
    key: elParams.p.key,
    children: _getChildren(),
    columnWidths: elParams.p.columnWidths,
    textDirection: elParams.p.textDirection,
    border: elParams.p.border,
    defaultVerticalAlignment: elParams.p.defaultVerticalAlignment,
    textBaseline: elParams.p.textBaseline,
  );
}