copyWithWrapped method

State$Response copyWithWrapped({
  1. Wrapped<String?>? state,
})

Implementation

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