dictionary static method

ExpressionInterface dictionary(
  1. Map<String, Object?>? value
)

Creates a literal dictionary expression.

Implementation

static ExpressionInterface dictionary(Map<String, Object?>? value) =>
    Expression.value(value);