withRecentReactions method

EnrichmentFlags withRecentReactions([
  1. int? limit
])

If called activity object will have attribute "latest_reactions" that contains list of recently created reactions

Implementation

EnrichmentFlags withRecentReactions([int? limit]) {
  if (limit == null) {
    _flags[_EnrichmentType.recentReactions] = true;
  } else {
    _flags[_EnrichmentType.recentReactionsLimit] = limit;
  }
  return this;
}