copyWith method
Implementation
Color copyWith({
double? red,
double? green,
double? blue,
int? alpha,
}) =>
Color(
red: red ?? this.red,
green: green ?? this.green,
blue: blue ?? this.blue,
alpha: alpha ?? this.alpha,
);