ASN1Integer constructor

ASN1Integer(
  1. BigInt? integer, {
  2. int tag = ASN1Tags.INTEGER,
})

Create an ASN1Integer entity with the given BigInt integer.

Implementation

ASN1Integer(this.integer, {int tag = ASN1Tags.INTEGER}) : super(tag: tag);