toFaceAttributes method
Implementation
FaceAttributes toFaceAttributes() {
switch (this) {
case 'DEFAULT':
return FaceAttributes.$default;
case 'ALL':
return FaceAttributes.all;
}
throw Exception('$this is not known in enum FaceAttributes');
}