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<DynamiteResponse<JsonObject, void>> wipeDone({required String token}) async {
  final rawResponse = wipeDoneRaw(
    token: token,
  );

  return rawResponse.future;
}