Product constructor

Product({
  1. required String name,
  2. required double price,
})

Implementation

Product({required this.name, required this.price});