SimpleSettingsTile constructor

SimpleSettingsTile(
  1. {@required String title,
  2. String subtitle,
  3. Widget child,
  4. bool enabled = true,
  5. Widget leading,
  6. VoidCallback onTap}
)

Implementation

SimpleSettingsTile({
  @required this.title,
  this.subtitle,
  this.child,
  this.enabled = true,
  this.leading,
  this.onTap,
});