ExprValue.fromJson constructor

ExprValue.fromJson(
  1. Object? json
)

Implementation

factory ExprValue.fromJson(Object? json) {
  return ExprValue(Value.fromJson(json));
}