fromBigInt static method

  1. @Deprecated('Use `ofBigInt` instead.')
LogicValue fromBigInt(
  1. BigInt value,
  2. int width
)

Converts BigInt value to a valid LogicValue with width number of bits.

width must be greater than or equal to 0.

Implementation

@Deprecated('Use `ofBigInt` instead.')
static LogicValue fromBigInt(BigInt value, int width) =>
    ofBigInt(value, width);