tableCellSelected static method

Color tableCellSelected(
  1. BuildContext context
)

Implementation

static Color tableCellSelected(BuildContext context) {
  return Theme.of(context).brightness == Brightness.light
      ? lightTableCellSelected
      : darkTableCellSelected;
}