Items constructor

Items({
  1. required String referenceId,
  2. required String type,
  3. required String name,
  4. required String sku,
  5. required int quantity,
  6. required TotalAmount totalAmount,
})

Implementation

Items({
  required this.referenceId,
  required this.type,
  required this.name,
  required this.sku,
  required this.quantity,
  required this.totalAmount,
});