copyWithWrapped method
TransactionsRecurringGetResponse
copyWithWrapped({
- Wrapped<
List< ? inflowStreams,TransactionStream> > - Wrapped<
List< ? outflowStreams,TransactionStream> > - Wrapped<
DateTime> ? updatedDatetime, - 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));
}