copyWithWrapped method

Method$Response copyWithWrapped({
  1. Wrapped<String?>? method,
})

Implementation

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