handle method
Implementation
@override
//ignore: avoid_renaming_method_parameters
void handle(FeedbacksCommand command) {
if (command is ShowSnackBarCommand) {
feedbacksExecutor.snackBar(command.title, command.message);
Buzz.fire(OnShowedSnackBarEvent());
return;
}
//TODO: Add more cases
}