goToNextStep method
void
goToNextStep()
Advances to the next step in the report flow.
Only advances if a reason has been selected. Moves from ChatReportStep.reason to ChatReportStep.user.
Implementation
void goToNextStep() {
if (selectedReason != null) {
step = ChatReportStep.user;
notifyListeners();
}
}