ExpandableSettingsTile constructor

ExpandableSettingsTile(
  1. {@required String title,
  2. String subtitle = '',
  3. List<Widget> children,
  4. bool enabled = true,
  5. bool expanded = false,
  6. Widget leading}
)

Implementation

ExpandableSettingsTile({
  @required this.title,
  this.subtitle = '',
  this.children,
  this.enabled = true,
  this.expanded = false,
  this.leading,
});