SettingsTileAndroid constructor

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

Implementation

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