deleteFormItem method

Future<void> deleteFormItem(
  1. int formId,
  2. int position
)

Deletes the form item in the given form at the given position

Implementation

Future<void> deleteFormItem(int formId, int position) async {
  await _delete('/api/form/$formId/item/$position');
}