tableCellBackground static method
Implementation
static Color tableCellBackground(BuildContext context) {
return Theme.of(context).brightness == Brightness.light
? lightTableCellBackground
: darkTableCellBackground;
}
static Color tableCellBackground(BuildContext context) {
return Theme.of(context).brightness == Brightness.light
? lightTableCellBackground
: darkTableCellBackground;
}