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