padGradient property

dynamic get padGradient

Implementation

get padGradient => RadialGradient(
      colors: [
        this == LaunchpadColor.OFF ? UNLIT_PAD : this.color,
        this == LaunchpadColor.OFF
            ? UNLIT_PAD
            : Color.alphaBlend(
                this.color.withOpacity(.3),
                UNLIT_PAD,
              ),
      ],
      stops: const [0.0, 1.0],
    );