updatePushShowNoDetail static method
Implementation
static Future<bool> updatePushShowNoDetail(bool mode) async {
var res = await NimCore.instance.settingsService
.setDndConfig(NIMDndConfig(showDetail: !mode));
if (res.isSuccess) {
_updateStatusBarNotificationConfigInternal('hideContent', mode);
}
return res.isSuccess;
}