ExprLessThan.fromProto constructor

ExprLessThan.fromProto(
  1. ExprLessThan proto
)

Implementation

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