toBodyPart method
Implementation
BodyPart toBodyPart() {
switch (this) {
case 'FACE':
return BodyPart.face;
case 'HEAD':
return BodyPart.head;
case 'LEFT_HAND':
return BodyPart.leftHand;
case 'RIGHT_HAND':
return BodyPart.rightHand;
}
throw Exception('$this is not known in enum BodyPart');
}