withBool static method

Variable<bool> withBool(
  1. bool value
)

Creates a variable that holds the specified boolean.

Implementation

static Variable<bool> withBool(bool value) {
  return Variable(value);
}