OrderReferencesEntity constructor

OrderReferencesEntity({
  1. String? paymentReference,
  2. String? shipmentReference,
  3. String? deliveryReference,
})

Implementation

OrderReferencesEntity({
  this.paymentReference,
  this.shipmentReference,
  this.deliveryReference,
});