ASN1ObjectIdentifier constructor

ASN1ObjectIdentifier(
  1. List<int>? objectIdentifier, {
  2. int tag = ASN1Tags.OBJECT_IDENTIFIER,
})

Create an ASN1ObjectIdentifier entity with the given objectIdentifier.

Implementation

ASN1ObjectIdentifier(this.objectIdentifier,
    {int tag = ASN1Tags.OBJECT_IDENTIFIER})
    : super(tag: tag) {
  objectIdentifierAsString = objectIdentifier!.join('.');
}