CustomExpansionTile method
Implementation
Widget CustomExpansionTile(
String title,
List<Widget> children,
bool initialExpanded,
) {
return ExpansionTile(
title: Text(
title,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 20,
color: Colors.blue,
),
),
children: children,
initiallyExpanded: initialExpanded,
);
}