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