fromValue static method
Implementation
static ASN1IdentifierClass? fromValue(int? value) {
if (value != null) {
try {
return ASN1IdentifierClass.values
.firstWhere((element) => element.toValue() == value);
} catch (e) {
return null;
}
}
return null;
}