fromBigInt static method
- @Deprecated('Use `ofBigInt` instead.')
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);