getThemeConfigurationStructure method
Gets the theme configuration structure
Implementation
Future<ThemeConfigurationStructure> getThemeConfigurationStructure(int id) async {
final response = await _get('/api/theme/$id/configuration/structure');
return ThemeConfigurationStructure.fromJson(response.data);
}