copyWith method
TransactionsRecurringGetResponse
copyWith({
- List<
TransactionStream> ? inflowStreams, - List<
TransactionStream> ? outflowStreams, - DateTime? updatedDatetime,
- String? requestId,
Implementation
TransactionsRecurringGetResponse copyWith(
{List<TransactionStream>? inflowStreams,
List<TransactionStream>? outflowStreams,
DateTime? updatedDatetime,
String? requestId}) {
return TransactionsRecurringGetResponse(
inflowStreams: inflowStreams ?? this.inflowStreams,
outflowStreams: outflowStreams ?? this.outflowStreams,
updatedDatetime: updatedDatetime ?? this.updatedDatetime,
requestId: requestId ?? this.requestId);
}