ASN1Integer.fromtInt constructor

ASN1Integer.fromtInt(
  1. int i, {
  2. int tag = ASN1Tags.INTEGER,
})

Create an ASN1Integer entity with the given int i.

Implementation

ASN1Integer.fromtInt(int i, {int tag = ASN1Tags.INTEGER}) : super(tag: tag) {
  integer = BigInt.from(i);
}