deleteLicense method
Deletes license key
Deletes the given license key.
Parameters:
- String uuidToken: Used for remote connections to device
Implementation
Future<void> deleteLicense({
String? uuidToken,
}) async {
final response = await deleteLicenseWithHttpInfo(
uuidToken: uuidToken,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}