canHandle method
Check if this can handle the interaction
Implementation
@override
bool canHandle(InteractionDefinition interaction) {
return interaction.id.startsWith('show_feedback') ||
interaction.id == 'dismiss_feedback' ||
interaction.id == 'sync_feedback';
}