getReactions method

  1. @override
Future<ChatResult<List<AggregatedReaction>>> getReactions(
  1. String roomId,
  2. String messageId
)
override

Implementation

@override
Future<ChatResult<List<AggregatedReaction>>> getReactions(
  String roomId,
  String messageId,
) async {
  return ChatSuccess(_reactions[roomId]?[messageId] ?? const []);
}