Pets constructor

Pets({
  1. bool? catsAllowed,
  2. String? catsAllowedException,
  3. bool? dogsAllowed,
  4. String? dogsAllowedException,
  5. bool? petsAllowed,
  6. String? petsAllowedException,
  7. bool? petsAllowedFree,
  8. String? petsAllowedFreeException,
})

Implementation

Pets({
  this.catsAllowed,
  this.catsAllowedException,
  this.dogsAllowed,
  this.dogsAllowedException,
  this.petsAllowed,
  this.petsAllowedException,
  this.petsAllowedFree,
  this.petsAllowedFreeException,
});