deleteGalleryFilePosition method

Future<void> deleteGalleryFilePosition(
  1. int galleryId,
  2. int position
)

Deletes the gallery file position from the given gallery at the given position

Implementation

Future<void> deleteGalleryFilePosition(int galleryId, int position) async {
  await _delete('/api/media/gallery/$galleryId/file/$position');
}