enableAccessPoint method
Enable the Access Point
Enables the Access Point connection.
Parameters:
- String uuidToken: Used for remote connections to device
Implementation
Future<void> enableAccessPoint({
String? uuidToken,
}) async {
final response = await enableAccessPointWithHttpInfo(
uuidToken: uuidToken,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}