withBigInt static method

Variable<BigInt> withBigInt(
  1. BigInt value
)

Creates a variable that holds the specified BigInt.

Implementation

static Variable<BigInt> withBigInt(BigInt value) {
  return Variable(value);
}