value static method

ExpressionInterface value(
  1. Object? value
)

Creates a literal value expression.

The supported value types are String, num, int, double, bool, DateTime, Map (Map<String, Object?>) and Iterable (Iterable<String?>).

Implementation

static ExpressionInterface value(Object? value) => ValueExpression(value);