primaryPressed static method

Color primaryPressed(
  1. Brightness brightness
)

Implementation

static Color primaryPressed(Brightness brightness) {
  return brightness == Brightness.light
      ? primaryPressedLight
      : primaryPressedDark;
}