withInt static method

Variable<int> withInt(
  1. int value
)

Creates a variable that holds the specified int.

Implementation

static Variable<int> withInt(int value) {
  return Variable(value);
}