moveIndex method

Future<AlgoliaTask> moveIndex({
  1. required String destination,
})

MoveIndex

Move the index referred to by this AlgoliaIndexReference.

Implementation

Future<AlgoliaTask> moveIndex({required String destination}) async {
  return await _copyOrMoveIndex(destination: destination, copy: false);
}