NiceNotificationSettingItem constructor

const NiceNotificationSettingItem({
  1. required String key,
  2. required String title,
  3. String? description,
  4. IconData? icon,
  5. bool defaultValue = true,
})

Implementation

const NiceNotificationSettingItem({
  required this.key,
  required this.title,
  this.description,
  this.icon,
  this.defaultValue = true,
});