RasterDataSourceConfiguration constructor

RasterDataSourceConfiguration(
  1. String name,
  2. RasterDataSourceProviderConfiguration provider,
  3. RasterDataSourceCacheConfiguration cache,
  4. bool ignoreExpiredData,
)

Creates a new instance.

  • name The unique name of the data source.
  • provider Data provider configuration.
  • cache Local cache configuration.
  • ignoreExpiredData A flag indicating whether expired data should be ignored until refreshed. Default value is false.

Implementation

RasterDataSourceConfiguration(this.name, this.provider, this.cache, this.ignoreExpiredData);