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