ReactionCount constructor

const ReactionCount({
  1. required ReactionType type,
  2. required int totalCount,
})

Creates a new instance of ReactionCount.

Implementation

const ReactionCount({
  required this.type,
  required this.totalCount,
});