ProductForExcel constructor

ProductForExcel({
  1. required String? sku,
  2. required int total,
  3. required String name,
})

Implementation

ProductForExcel({
  required this.sku,
  required this.total,
  required this.name,
});