copyWithWrapped method
ItemStatus
copyWithWrapped({
- Wrapped<
ItemStatusInvestments?> ? investments, - Wrapped<
ItemStatusTransactions?> ? transactions, - Wrapped<
ItemStatusLastWebhook?> ? lastWebhook,
Implementation
ItemStatus copyWithWrapped(
{Wrapped<ItemStatusInvestments?>? investments,
Wrapped<ItemStatusTransactions?>? transactions,
Wrapped<ItemStatusLastWebhook?>? lastWebhook}) {
return ItemStatus(
investments:
(investments != null ? investments.value : this.investments),
transactions:
(transactions != null ? transactions.value : this.transactions),
lastWebhook:
(lastWebhook != null ? lastWebhook.value : this.lastWebhook));
}