setNotify method

void setNotify(
  1. bool value
)

Implementation

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