BodyPart constructor

BodyPart({
  1. required num id,
  2. required String name,
  3. required String arName,
  4. required String outlineBody,
  5. required BodyParts bodyPart,
  6. File? cachedImage,
  7. String? image,
})

Implementation

BodyPart({
  required this.id,
  required this.name,
  required this.arName,
  required this.outlineBody,
  required this.bodyPart,
  this.cachedImage,
  this.image
});