Customer constructor

Customer({
  1. required String companyID,
  2. required String registrationName,
  3. required Address address,
  4. String? businessID,
})

Implementation

Customer({
  required this.companyID,
  required this.registrationName,
  required this.address,
  this.businessID,
});