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