ASN1Integer.fromtInt constructor
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);
}
Create an ASN1Integer entity with the given int i
.
ASN1Integer.fromtInt(int i, {int tag = ASN1Tags.INTEGER}) : super(tag: tag) {
integer = BigInt.from(i);
}