getAllReactions method

Map<String, List<Reaction>> getAllReactions()

Returns an unmodifiable map of all reactions for persistence.

Implementation

Map<String, List<Reaction>> getAllReactions() {
  return Map.unmodifiable(_messageReactions);
}