ExprSet.fromJson constructor

ExprSet.fromJson(
  1. List<Object?> json
)

Implementation

factory ExprSet.fromJson(List<Object?> json) {
  return ExprSet([
    for (final expression in json)
      Expr.fromJson(expression as Map<String, Object?>)
  ]);
}