table function

Widget table(
  1. AppModel app,
  2. BuildContext context, {
  3. required List<TableRow> children,
})

Implementation

Widget table(AppModel app, BuildContext context,
        {required List<TableRow> children}) =>
    StyleRegistry.registry()
        .styleWithApp(app)
        .frontEndStyle()
        .tableStyle()
        .table(app, context, children: children);