await call.sendReaction(reactionType: 'fireworks');
Reactions
Reactions in video calling enable participants to express emotions and non-verbal cues without interrupting the flow of conversation. They also help create a more interactive and responsive virtual meeting environment.
It is easy to create reactions with Stream Video’s Flutter SDK.
You can also add custom data to the reaction and specify a specific emoji:
await call.sendReaction(
reactionType: 'raise-hand',
emojiCode: ':smile:',
custom: {'mycustomfield': 'mycustomvalue'},
);
Refer to the cookbook for information on built-in reaction components and customization.