WBColor constructor

WBColor({
  1. double? red = 0.0,
  2. double? green = 0.0,
  3. double? blue = 0.0,
  4. double? alpha = 1.0,
})

Constructs a WBColor

Implementation

WBColor(
    {this.red = 0.0, this.green = 0.0, this.blue = 0.0, this.alpha = 1.0});