table static method

Widget table({
  1. List<LabeledSwitch> switches = const [],
})

Implementation

static Widget table({List<LabeledSwitch> switches = const []}) {
  List<TableRow> tableRows = [];
  for (var s in switches) tableRows.add(s.tableRow);
  return lazy.table(children: tableRows);
}