StreamReactionPicker constructor

const StreamReactionPicker({
  1. Key? key,
  2. required Message message,
})

screenshot screenshot

Allows the user to select reactions to a message on mobile.

It is not recommended to use this widget directly as it's one of the default widgets used by StreamMessageWidget.onMessageActions.

Implementation

const StreamReactionPicker({
  super.key,
  required this.message,
});