copyWith method

ItemStatusNullable copyWith({
  1. ItemStatusInvestments? investments,
  2. ItemStatusTransactions? transactions,
  3. 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);
}