ExprOr.fromProto constructor

ExprOr.fromProto(
  1. ExprOr proto
)

Implementation

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