copyWithWrapped method

Colour$Response copyWithWrapped({
  1. Wrapped<String?>? colour,
})

Implementation

Colour$Response copyWithWrapped({Wrapped<String?>? colour}) {
  return Colour$Response(
      colour: (colour != null ? colour.value : this.colour));
}