replayAssembly method

Future<TransloaditResponse> replayAssembly({
  1. required String assemblyID,
  2. Map<String, dynamic>? params,
})

Attempts to recover the input files and retry the execution of an Assembly Specify params to change details of the Assembly https://transloadit.com/docs/api/#supported-keys-inside-the-params-field

Implementation

Future<TransloaditResponse> replayAssembly(
    {required String assemblyID, Map<String, dynamic>? params}) {
  params = params ?? {};

  String url = '/assemblies/$assemblyID/replay';
  return request.httpPost(
      service: service, assemblyPath: url, params: params);
}