getDefaultDeviceProfileInfo method

Future<DeviceProfileInfo> getDefaultDeviceProfileInfo({
  1. RequestConfig? requestConfig,
})

Implementation

Future<DeviceProfileInfo> getDefaultDeviceProfileInfo(
    {RequestConfig? requestConfig}) async {
  var response = await _tbClient.get<Map<String, dynamic>>(
      '/api/deviceProfileInfo/default',
      options: defaultHttpOptionsFromConfig(requestConfig));
  return DeviceProfileInfo.fromJson(response.data!);
}