changeRgb method
Changes one or more of this color's RGB channels and returns the result.
Implementation
SassColor changeRgb({int? red, int? green, int? blue, num? alpha}) =>
SassColor.rgb(red ?? this.red, green ?? this.green, blue ?? this.blue,
alpha ?? this.alpha);