withString static method

Variable<String> withString(
  1. String value
)

Creates a variable that holds the specified string.

Implementation

static Variable<String> withString(String value) {
  return Variable(value);
}