ExprIn.fromJson constructor

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

Implementation

factory ExprIn.fromJson(Map<String, Object?> json) {
  return ExprIn(
    left: Expr.fromJson(json['left'] as Map<String, Object?>),
    right: Expr.fromJson(json['right'] as Map<String, Object?>),
  );
}