value property
Gets the enumeration value as int. return The value.
Implementation
int get value {
switch (this) {
case FaceAttackSupport.none:
return 0;
case FaceAttackSupport.idCard:
return 1;
case FaceAttackSupport.screen:
return 2;
case FaceAttackSupport.print:
return 3;
}
}