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