copyWith method
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,
);