toggleReportUser method
Toggles whether to report the user.
value is the new value. If null, defaults to false.
Implementation
void toggleReportUser(bool? value) {
_reportUser = value ?? false;
notifyListeners();
}
Toggles whether to report the user.
value is the new value. If null, defaults to false.
void toggleReportUser(bool? value) {
_reportUser = value ?? false;
notifyListeners();
}