copyWithWrapped method

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

Implementation

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