SettingsTile constructor

const SettingsTile({
  1. Key? key,
  2. required String title,
  3. Icon? icon,
  4. String subTitle = "",
  5. bool? showChevron,
  6. VoidCallback? onTap,
  7. EditType editType = EditType.text,
  8. VoidCallback? onEditingComplete,
  9. Function? onChanged,
  10. String androidDialogMessage = "",
  11. ListEditTypeView? listEditTypeView,
})

Implementation

const SettingsTile({
  Key? key,
  required this.title,
  this.icon,
  this.subTitle = "",
  this.showChevron,
  this.onTap,
  this.editType = EditType.text,
  this.onEditingComplete,
  this.onChanged,
  this.androidDialogMessage = "",
  this.listEditTypeView,
}) : super(key: key);