copyWithWrapped method

TransferRecurringListResponse copyWithWrapped({
  1. Wrapped<List<RecurringTransfer>>? recurringTransfers,
  2. Wrapped<String>? requestId,
})

Implementation

TransferRecurringListResponse copyWithWrapped(
    {Wrapped<List<RecurringTransfer>>? recurringTransfers,
    Wrapped<String>? requestId}) {
  return TransferRecurringListResponse(
      recurringTransfers: (recurringTransfers != null
          ? recurringTransfers.value
          : this.recurringTransfers),
      requestId: (requestId != null ? requestId.value : this.requestId));
}