setIntValue method

void setIntValue(
  1. EIRType type,
  2. BigInt value
)

Implementation

void setIntValue(EIRType type, BigInt value) {
  setAttribute(type,
      ByteUtils.bigIntToBytes(value, 16, endianness: Endianness.Little));
}