How to remove default padding from ExpansionTile's header
ListTile is styled with ListTileTheme and we can add own styles for child ListTile like this
ListTileTheme(
contentPadding: EdgeInsets.all(0),
child: ExpansionTile(...)
)