darken property

Color get darken

Implementation

Color get darken {
  return Color.fromRGBO((red * 0.85).toInt(), (green * 0.85).toInt(),
      (blue * 0.85).toInt(), opacity);
}