Product constructor Null safety
- {required String productId,
- String? name,
- String? description,
- List<
ProductUnit> ? units}
Implementation
Product({
required this.productId,
this.name,
this.description,
this.units,
});
Product({
required this.productId,
this.name,
this.description,
this.units,
});