push method

Future<void> push({
  1. required String guid,
  2. required int indexerId,
})

Handler for release/${id}.

Push a new release to the download clients.

Required Parameters:

  • guid: GUID of the release
  • indexerId: Indexer ID of the release

Implementation

Future<void> push({ required String guid, required int indexerId }) async => _commandPushRelease(_client, indexerId: indexerId, guid: guid);