AvailableReaction constructor

const AvailableReaction({
  1. required ReactionType type,
  2. required bool needsPremium,
})

Represents an available reaction

Implementation

const AvailableReaction({
  required this.type,
  required this.needsPremium,
});