HslColor copyWith({ num? h, num? s, num? l, }) { return HslColor( h: h ?? this.h, s: s ?? this.s, l: l ?? this.l, ); }