ExprIn.fromProto constructor

ExprIn.fromProto(
  1. ExprIn proto
)

Implementation

factory ExprIn.fromProto(pb.ExprIn proto) {
  return ExprIn(
    left: Expr.fromProto(proto.left),
    right: Expr.fromProto(proto.right),
  );
}