withUserReactions method

EnrichmentFlags withUserReactions(
  1. String userId
)

If called activity object will have attribute "own_reactions" that contains list of reactions of other users.

Implementation

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