Color constructor

Color([
  1. double r = 1,
  2. double g = 1,
  3. double b = 1,
  4. double a = 1,
])

Implementation

Color([this.r = 1, this.g = 1, this.b = 1, this.a = 1]);