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