copyWithWrapped method

TransactionsRecurringGetResponse copyWithWrapped({
  1. Wrapped<List<TransactionStream>>? inflowStreams,
  2. Wrapped<List<TransactionStream>>? outflowStreams,
  3. Wrapped<DateTime>? updatedDatetime,
  4. Wrapped<String>? requestId,
})

Implementation

TransactionsRecurringGetResponse copyWithWrapped(
    {Wrapped<List<TransactionStream>>? inflowStreams,
    Wrapped<List<TransactionStream>>? outflowStreams,
    Wrapped<DateTime>? updatedDatetime,
    Wrapped<String>? requestId}) {
  return TransactionsRecurringGetResponse(
      inflowStreams:
          (inflowStreams != null ? inflowStreams.value : this.inflowStreams),
      outflowStreams: (outflowStreams != null
          ? outflowStreams.value
          : this.outflowStreams),
      updatedDatetime: (updatedDatetime != null
          ? updatedDatetime.value
          : this.updatedDatetime),
      requestId: (requestId != null ? requestId.value : this.requestId));
}