RenderExpansionTile constructor
RenderExpansionTile({})
Creates a RenderExpansionTile with the given title and visual configuration.
Implementation
RenderExpansionTile({
required String title,
required bool expanded,
required bool focused,
required Color expandedColor,
required Color collapsedColor,
required Color iconColor,
}) : _title = title,
_expanded = expanded,
_focused = focused,
_expandedColor = expandedColor,
_collapsedColor = collapsedColor,
_iconColor = iconColor;