copyWithWrapped method

BankTransferSweepGetResponse copyWithWrapped({
  1. Wrapped<BankTransferSweep>? sweep,
  2. Wrapped<String>? requestId,
})

Implementation

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