ASN1ContextSpecific.fromBytes constructor

ASN1ContextSpecific.fromBytes(
  1. Uint8List bytes
)

Implementation

ASN1ContextSpecific.fromBytes(super.bytes) : super.fromBytes() {
  // check that this really is an Private type
  if (!isContextSpecific(tag)) {
    throw ASN1Exception('tag $tag is not an ASN1 Context specific class');
  }
}