getSupervisorHealth method
Get Supervisor health
Get Supervisor health.
Parameters:
- String uuidToken: Used for remote connections to device
Implementation
Future<void> getSupervisorHealth({
String? uuidToken,
}) async {
final response = await getSupervisorHealthWithHttpInfo(
uuidToken: uuidToken,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}