ExploreDirectoryConfiguration constructor

ExploreDirectoryConfiguration(
  1. Uri uri, {
  2. ThingFilter? thingFilter,
  3. int? limit,
})

Instantiates a new ExploreDirectoryConfiguration.

The uri needs to point to the Thing Description exposed by the TDD that is supposed to be used for this DiscoveryConfiguration.

A thingFilter can be provided for filtering and the total number of TDs can be limited.

Implementation

ExploreDirectoryConfiguration(
  this.uri, {
  this.thingFilter,
  this.limit,
});