tableCellBackground static method

Color tableCellBackground(
  1. BuildContext context
)

Implementation

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