setDefaultMessageNotifications method

Future<void> setDefaultMessageNotifications(
  1. DefaultMessageNotification value, {
  2. String? reason,
})

Implementation

Future<void> setDefaultMessageNotifications(DefaultMessageNotification value,
    {String? reason}) async {
  await _serverPart.updateServer(
      id, {'default_message_notifications': value.value}, reason);
}