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