enabledSoundCategories property

SoundCategoryEnumSet get enabledSoundCategories

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

Implementation

SoundCategoryEnumSet get enabledSoundCategories {
  _COptionSet_CSoundCategory res = _CSoundNotificationSettings_enabledSoundCategories(_CSoundNotificationSettingsMakeDefault().._impl=_self);
  return res._toDart();
}
set enabledSoundCategories (SoundCategoryEnumSet soundCategories)

Implementation

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