copyWith method

Hsl copyWith({
  1. double? h,
  2. double? s,
  3. double? l,
  4. int? a,
})

Implementation

Hsl copyWith({double? h, double? s, double? l, int? a}) =>
    Hsl(h ?? this.h, s ?? this.s, l ?? this.l, a ?? this.a);