updateDialogNotificationsSettings function

Future<bool> updateDialogNotificationsSettings(
  1. String dialogId,
  2. bool enable
)

Implementation

Future<bool> updateDialogNotificationsSettings(String dialogId, bool enable) {
  return UpdateNotificationsSettingsQuery(dialogId, enable).perform();
}