reset method

void reset()

Resets the report provider to its initial state.

Clears the selected reason, resets all flags, and returns to the first step.

Implementation

void reset() {
  selectedReason = null;
  _reportUser = false;
  _blockUser = false;
  step = ReportStep.reason;
  notifyListeners();
}