tableCellHover static method

Color tableCellHover(
  1. BuildContext context
)

Implementation

static Color tableCellHover(BuildContext context) {
  return Theme.of(context).brightness == Brightness.light
      ? lightTableCellHover
      : darkTableCellHover;
}