copyWithWrapped method

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

Implementation

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