targetsAsResources property

List<Resource> targetsAsResources

Returns a list of the targets as Resource objects.

Throws MissingHueNetworkException if the hueNetwork is null, if a target can not be found on the hueNetwork, or if the target's ResourceType cannot be found on the hueNetwork.

Implementation

List<Resource> get targetsAsResources {
  List<Relative> targets =
      dependees.map((dependee) => dependee.target).toList();

  return getRelativesAsResources(targets);
}