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