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