RgbModel copyWith({ int? r, int? g, int? b, double? opacity, }) { return RgbModel( r: r ?? this.r, g: g ?? this.g, b: b ?? this.b, opacity: opacity ?? this.opacity, ); }