tableAlternateRow static method

Color tableAlternateRow(
  1. BuildContext context
)

Implementation

static Color tableAlternateRow(BuildContext context) {
  return Theme.of(context).brightness == Brightness.light
      ? lightTableAlternateRow
      : darkTableAlternateRow;
}