copyWith method
Implementation
ReceiptDetailFilter copyWith({
InWhere<int>? branchIds,
InWhere<int>? accountIds,
InWhere<int>? receiptIds,
InWhere<int>? typeIds,
InWhere<int>? currencyIds,
InWhere<int>? measureUnitIds,
InWhere<int>? userIds,
NumberRangeWhere<double>? price,
LikeWhere? text,
}) =>
ReceiptDetailFilter(
branchIds: branchIds ?? this.branchIds,
accountIds: accountIds ?? this.accountIds,
currencyIds: currencyIds ?? this.currencyIds,
receiptIds: receiptIds ?? this.receiptIds,
typeIds: typeIds ?? this.typeIds,
userIds: userIds ?? this.userIds,
price: price ?? this.price,
text: text ?? this.text,
);