Blues constructor

const Blues()

Ten shades of blue; the higher the index, the darker the color.

There are 10 valid indexes

  • 0, ultra light ≡ 50
  • 1, very light ≡ 100
  • 2, light ≡ 200
  • 3, lighter ≡ 300
  • 4, bit lighter ≡ 400
  • 5, primary ≡ 500
  • 6, bit darker ≡ 600
  • 7, darker ≡ 700
  • 8, dark ≡ 800
  • 9, very dark ≡ 900

Implementation

const Blues()
    // coverage:ignore-start
    : super(
        const [
          Blue.ultraLight(),
          Blue.veryLight(),
          Blue.light(),
          Blue.lighter(),
          Blue.bitLighter(),
          Blue(),
          Blue.bitDarker(),
          Blue.darker(),
          Blue.dark(),
          Blue.veryDark(),
        ],
      );