ASN1Integer.fromBytes constructor

ASN1Integer.fromBytes(
  1. Uint8List encodedBytes
)

Creates an ASN1Integer entity from the given encodedBytes.

Implementation

ASN1Integer.fromBytes(Uint8List super.encodedBytes) : super.fromBytes() {
  integer = decodeBigInt(valueBytes!);
}