wipeDone method

Future<DynamiteResponse<JsonObject, void>> wipeDone({
  1. required String token,
})

Finish the wipe.

Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.

Parameters:

  • token App password.

Status codes:

  • 200: Wipe finished successfully
  • 404: Device should not be wiped

See:

Implementation

Future<_i1.DynamiteResponse<JsonObject, void>> wipeDone({required String token}) async {
  final _request = $wipeDone_Request(
    token: token,
  );
  final _response = await _rootClient.httpClient.send(_request);

  final _serializer = $wipeDone_Serializer();
  final _rawResponse = await _i1.ResponseConverter<JsonObject, void>(_serializer).convert(_response);
  return _i1.DynamiteResponse.fromRawResponse(_rawResponse);
}