enabledSoundCategories property

EnumSet<SoundCategory> get enabledSoundCategories

Набор флагов для звуковых оповещений.

Implementation

EnumSet<SoundCategory> get enabledSoundCategories {
  _COptionSet_CSoundCategory res = _CSoundNotificationSettings_enabledSoundCategories(_CSoundNotificationSettingsMakeDefault().._impl=_self);
  return res._toDart();
}
set enabledSoundCategories (EnumSet<SoundCategory> soundCategories)

Implementation

set enabledSoundCategories(EnumSet<SoundCategory> soundCategories) {
  var _a1 = soundCategories._copyFromDartTo_COptionSet_CSoundCategory();
  void res = _CSoundNotificationSettings_setEnabledSoundCategories_COptionSet_CSoundCategory(_CSoundNotificationSettingsMakeDefault().._impl=_self, _a1);
  return res;
}