withUserChildren method

EnrichmentFlags withUserChildren(
  1. String userId
)

If called activity object will have attribute "with_own_children"

Implementation

EnrichmentFlags withUserChildren(String userId) {
  _flags[_EnrichmentType.ownChildren] = true;
  _userId = userId;
  return this;
}