tableCellFocus static method

Color tableCellFocus(
  1. BuildContext context
)

Implementation

static Color tableCellFocus(BuildContext context) {
  return Theme.of(context).brightness == Brightness.light
      ? lightTableCellFocus
      : darkTableCellFocus;
}