updateThemeCategory method
Updates the theme category for the given field and theme with the given category
Implementation
Future<void> updateThemeCategory(int themeId, String field, int categoryId) async {
await _put('/api/theme/$themeId/category/$field', data: {'category': categoryId});
}