Products constructor

Products({
  1. required String externalSKU,
  2. required String name,
  3. required int quantity,
})

Implementation

Products(
    {required this.externalSKU, required this.name, required this.quantity});