copyWith method

AccountCurrencyFilter copyWith({
  1. InWhere<int>? branchIds,
  2. InWhere<int>? accountIds,
  3. InWhere<int>? currencyIds,
  4. InWhere<int>? measureUnitIds,
  5. InWhere<int>? userIds,
  6. NumberRangeWhere<double>? price,
  7. DateTimeRangeWhere? createAt,
})

Implementation

AccountCurrencyFilter copyWith({
  InWhere<int>? branchIds,
  InWhere<int>? accountIds,
  InWhere<int>? currencyIds,
  InWhere<int>? measureUnitIds,
  InWhere<int>? userIds,
  NumberRangeWhere<double>? price,
  DateTimeRangeWhere? createAt,
}) =>
    AccountCurrencyFilter(
      branchIds: branchIds ?? this.branchIds,
      accountIds: accountIds ?? this.accountIds,
      currencyIds: currencyIds ?? this.currencyIds,
      userIds: userIds ?? this.userIds,
      price: price ?? this.price,
      createAt: createAt ?? this.createAt,
    );