AppsNotificationsSettingsTile constructor

const AppsNotificationsSettingsTile({
  1. dynamic key,
  2. required String title,
  3. String? description,
  4. required String appKey,
  5. bool? enabled,
})

Implementation

const AppsNotificationsSettingsTile({
  super.key,
  required this.title,
  this.description,
  required this.appKey,
  this.enabled,
});