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