withValues method

Color withValues({
  1. double? r,
  2. double? g,
  3. double? b,
  4. double? a,
})

Implementation

Color withValues({double? r, double? g, double? b, double? a}) =>
    Color(r: r ?? this.r, g: g ?? this.g, b: b ?? this.b, a: a ?? this.a);