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