DogBreedDetails constructor

DogBreedDetails({
  1. required String breedName,
  2. required String fullGrownSize,
  3. required int maleMaxPrice,
  4. required int maleMinPrice,
  5. required int femaleMaxPrice,
  6. required int femaleMinPrice,
  7. required int maleMinFullGrownWeight,
  8. required int maleMaxFullGrownWeight,
  9. required int femaleMinFullGrownWeight,
  10. required int femaleMaxFullGrownWeight,
  11. required int maleMinFullGrownHeight,
  12. required int maleMaxFullGrownHeight,
  13. required int femaleMinFullGrownHeight,
  14. required int femaleMaxFullGrownHeight,
  15. required List hairType,
  16. required List colors,
  17. required List temperament,
  18. required int grooming,
  19. required int shedding,
  20. required int intelligence,
  21. required int trainability,
  22. required int playfulness,
  23. required int sensitivity,
  24. required int affection,
  25. required int socialNeeds,
  26. required int barking,
  27. int? catFriendly,
  28. required int watchdogAbility,
  29. required int guardingBehavior,
  30. required int bitingPotential,
  31. required int mouthiness,
  32. required int appartmentFriendly,
  33. required int adaptability,
  34. required int strangerFriendly,
  35. required int childFriendly,
  36. required int energyLevel,
  37. required int activityRequirement,
  38. required int weightGainPotential,
  39. required bool isServiceDog,
  40. required bool isHypoAllergenic,
  41. required String dailyFoodConsumption,
  42. required String weatherAndClimate,
  43. int? stinkiness,
  44. required int minLifeSpan,
  45. required int maxLifeSpan,
  46. required int minLitterSize,
  47. required int maxLitterSize,
  48. String? photo1,
  49. String? photo2,
  50. String? photo3,
  51. String? photo4,
  52. String? photo5,
})

Implementation

DogBreedDetails({
  required this.breedName,
  required this.fullGrownSize,
  required this.maleMaxPrice,
  required this.maleMinPrice,
  required this.femaleMaxPrice,
  required this.femaleMinPrice,
  required this.maleMinFullGrownWeight,
  required this.maleMaxFullGrownWeight,
  required this.femaleMinFullGrownWeight,
  required this.femaleMaxFullGrownWeight,
  required this.maleMinFullGrownHeight,
  required this.maleMaxFullGrownHeight,
  required this.femaleMinFullGrownHeight,
  required this.femaleMaxFullGrownHeight,
  required this.hairType,
  required this.colors,
  required this.temperament,
  required this.grooming,
  required this.shedding,
  required this.intelligence,
  required this.trainability,
  required this.playfulness,
  required this.sensitivity,
  required this.affection,
  required this.socialNeeds,
  required this.barking,
  this.catFriendly,
  required this.watchdogAbility,
  required this.guardingBehavior,
  required this.bitingPotential,
  required this.mouthiness,
  required this.appartmentFriendly,
  required this.adaptability,
  required this.strangerFriendly,
  required this.childFriendly,
  required this.energyLevel,
  required this.activityRequirement,
  required this.weightGainPotential,
  required this.isServiceDog,
  required this.isHypoAllergenic,
  required this.dailyFoodConsumption,
  required this.weatherAndClimate,
  this.stinkiness,
  required this.minLifeSpan,
  required this.maxLifeSpan,
  required this.minLitterSize,
  required this.maxLitterSize,
  this.photo1,
  this.photo2,
  this.photo3,
  this.photo4,
  this.photo5,
});