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