copyWithWrapped method

SandboxItemSetVerificationStatusResponse copyWithWrapped({
  1. Wrapped<String>? requestId,
})

Implementation

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