headerRow method
Implementation
Widget headerRow() => headerContainer(
child: Row(
children: <Widget>[
for (ATableColumn<T> col in widget.columns)
headerCell(col, isVertical: false),
],
),
);
Widget headerRow() => headerContainer(
child: Row(
children: <Widget>[
for (ATableColumn<T> col in widget.columns)
headerCell(col, isVertical: false),
],
),
);