15 lines
350 B
Dart
15 lines
350 B
Dart
part of '../product.dart';
|
|
|
|
@freezed
|
|
class ProductQuantity with _$ProductQuantity {
|
|
const factory ProductQuantity({
|
|
required Product product,
|
|
ProductVariant? variant,
|
|
required int quantity,
|
|
String? notes,
|
|
}) = _ProductQuantity;
|
|
|
|
factory ProductQuantity.empty() =>
|
|
ProductQuantity(product: Product.empty(), quantity: 0);
|
|
}
|