withDateTime static method

Variable<DateTime> withDateTime(
  1. DateTime value
)

Creates a variable that holds the specified date.

Implementation

static Variable<DateTime> withDateTime(DateTime value) {
  return Variable(value);
}