Client constructor

Client({
  1. int? id,
  2. String? externalId,
  3. String? name,
  4. String? returnToLink,
  5. String? type,
  6. List<AppleQuantityTypeClient>? appleQuantityTypeClient,
  7. List<AppleCategoryTypeClient>? appleCategoryTypeClient,
  8. List<GoogleParameterTypeClient>? googleParameterTypeClient,
})

Implementation

Client({
  this.id,
  this.externalId,
  this.name,
  this.returnToLink,
  this.type,
  this.appleQuantityTypeClient,
  this.appleCategoryTypeClient,
  this.googleParameterTypeClient,
});