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