SettingsTile<T>.navigation constructor

SettingsTile<T>.navigation({
  1. Widget? leading,
  2. Widget? trailing,
  3. Widget? value,
  4. required Widget title,
  5. Widget? description,
  6. dynamic onPressed(
    1. BuildContext
    )?,
  7. bool enabled = true,
  8. Key? key,
})

Implementation

SettingsTile.navigation({
  this.leading,
  this.trailing,
  this.value,
  required this.title,
  this.description,
  this.onPressed,
  this.enabled = true,
  super.key,
}) {
  onToggle = null;
  onChanged = null;
  initialValue = null;
  tileType = SettingsTileType.navigationTile;
}