Customer constructor

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

Implementation

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