ExprGreaterThan.fromProto constructor

ExprGreaterThan.fromProto(
  1. ExprGreaterThan proto
)

Implementation

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