copyWithWrapped method
ScheduledTransactionResponse$Data
copyWithWrapped({
- Wrapped<
ScheduledTransactionDetail> ? scheduledTransaction,
Implementation
ScheduledTransactionResponse$Data copyWithWrapped(
{Wrapped<ScheduledTransactionDetail>? scheduledTransaction}) {
return ScheduledTransactionResponse$Data(
scheduledTransaction: (scheduledTransaction != null
? scheduledTransaction.value
: this.scheduledTransaction));
}