ExprContainsAll.fromProto constructor

ExprContainsAll.fromProto(
  1. ExprContainsAll proto
)

Implementation

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