Color constructor

Color({
  1. double? brightness,
  2. double? contrast,
  3. double? saturation,
})

Implementation

Color({
  this.brightness,
  this.contrast,
  this.saturation,
});