storyAreaTypeSuggestedReaction property
An area pointing to a suggested reaction. App needs to show a clickable reaction on the area and call setStoryReaction when the are is clicked
Implementation
StoryAreaTypeSuggestedReaction? get storyAreaTypeSuggestedReaction {
if (this is StoryAreaTypeSuggestedReaction) {
return this as StoryAreaTypeSuggestedReaction;
}
return null;
}