moveFormItem method
Moves the form item in the given form at the given position to the new position
Implementation
Future<void> moveFormItem(int formId, int oldPosition, int newPosition) async {
await _put('/api/form/$formId/item/$oldPosition', data: {'newPosition': newPosition});
}