moveGalleryFilePosition method
Moves the gallery file position to the new position
Implementation
Future<void> moveGalleryFilePosition(int galleryId, int oldPosition, int newPosition) async {
await _put('/api/media/gallery/$galleryId/file/$oldPosition', data: {'newPosition': newPosition});
}