ExprIs.fromJson constructor

ExprIs.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory ExprIs.fromJson(Map<String, Object?> json) {
  return ExprIs(
    left: Expr.fromJson(json['left'] as Map<String, Object?>),
    entityType: ['entity_type'] as String,
    inExpr: json['in'] != null
        ? Expr.fromJson(json['in'] as Map<String, Object?>)
        : null,
  );
}