fromValue static method

ASN1IdentifierTagNumber? fromValue(
  1. int? value
)

Implementation

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