value property
Gets the enumeration value as int. return The value.
Implementation
int get value {
switch (this) {
case UserAuthenticationMethod.undefined:
return 0;
case UserAuthenticationMethod.password:
return 1;
case UserAuthenticationMethod.biometrics:
return 2;
}
}