copyWithWrapped method

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

Implementation

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