copyWith method

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

Implementation

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