AdditionalInfo constructor

AdditionalInfo({
  1. String? storeId,
  2. String? billNumber,
  3. String? mobileNumber,
  4. String? loyaltyNumber,
  5. String? referenceLabel,
  6. String? customerLabel,
})

Constructor for initializing the additional information.

Implementation

AdditionalInfo({
  this.storeId,
  this.billNumber,
  this.mobileNumber,
  this.loyaltyNumber,
  this.referenceLabel,
  this.customerLabel,
});