Updates the given form item
Future<void> updateFormItem(int formId, FormItem formItem) async { await _put('/api/form/$formId/item/${formItem.position}', data: formItem.toJson()); }