get static method

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

Fetch 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>?> get({
  required String bridgeIpAddr,
  String? pathToResource,
  required String applicationKey,
  required ResourceType? resourceType,
}) async =>
    await HueHttpClient.get(
      url: getTargetUrl(
        bridgeIpAddr: bridgeIpAddr,
        resourceType: resourceType,
        pathToResource: pathToResource,
      ),
      applicationKey: applicationKey,
    );