getIntValue method

BigInt getIntValue(
  1. EIRType type
)

Gets an integer value for the specified EIR type.

Implementation

BigInt getIntValue(EIRType type) {
  return ByteUtils.bytesToBigInt(
    attributes[type]!,
    endianness: Endianness.Little,
  );
}