updateThemeForm method

Future<void> updateThemeForm(
  1. int themeId,
  2. String field,
  3. int formId
)

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});
}