ExprGreaterThanOrEquals.fromProto constructor

ExprGreaterThanOrEquals.fromProto(
  1. ExprGreaterThanOrEquals proto
)

Implementation

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