description property
String
get
description
Implementation
String get description {
var tc = typeClass();
var tn = tagNumber();
if (tc == ASN1IdentifierClass.UNIVERSAL) {
return tn.toString();
} else {
return "$tc(${tn.toValue()})";
}
}