/// flag which represents the initial state of the tile, if true the tile state is
/// set to expanded initially, default = false
final bool expanded;
ExpandableSettingsTile({
required this.title,
required this.children,
this.subtitle = '',
this.enabled = true,
this.expanded = false,
this.leading,
});
Even if I set expanded = true, it remains closed at startup.
Even if I set expanded = true, it remains closed at startup.