copyWith method
ItemStatus
copyWith({
- ItemStatusInvestments? investments,
- ItemStatusTransactions? transactions,
- ItemStatusLastWebhook? lastWebhook,
Implementation
ItemStatus copyWith(
{ItemStatusInvestments? investments,
ItemStatusTransactions? transactions,
ItemStatusLastWebhook? lastWebhook}) {
return ItemStatus(
investments: investments ?? this.investments,
transactions: transactions ?? this.transactions,
lastWebhook: lastWebhook ?? this.lastWebhook);
}