copyWith method

Red copyWith({
  1. int? red,
})

Implementation

Red copyWith({int? red}) {
  return Red(red: red ?? this.red);
}