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