setNotify method
Implementation
void setNotify(bool value) {
ChatMessageRepo.setNotify(accountId, value).then((suc) {
if (!suc.isSuccess) {
_isNotify = !value;
notifyListeners();
}
});
_isNotify = value;
notifyListeners();
}