delete static method

Future<Map<String, dynamic>?> delete({
  1. required String bridgeIpAddr,
  2. required String pathToResource,
  3. required String applicationKey,
  4. required ResourceType? resourceType,
})

Delete an existing resource.

bridgeIpAddr is the IP address of the target bridge.

If a specific resource is being queried, include pathToResource. This is most likely the resource's ID.

applicationKey is the key associated with this devices in the bridge's whitelist.

The resourceType is used to let the bridge know what type of resource is being queried.

Implementation

static Future<Map<String, dynamic>?> delete({
  required String bridgeIpAddr,
  required String pathToResource,
  required String applicationKey,
  required ResourceType? resourceType,
}) async =>
    await HueHttpClient.delete(
      url: getTargetUrl(
        bridgeIpAddr: bridgeIpAddr,
        resourceType: resourceType,
        pathToResource: pathToResource,
      ),
      applicationKey: applicationKey,
    );