RasterDataSourceConfigurationUpdate constructor

RasterDataSourceConfigurationUpdate(
  1. Map<String, String>? providerHeaders,
  2. bool? ignoreExpiredData,
  3. int? cacheDiskSize
)

Creates a new instance.

  • providerHeaders Optional update of the provider headers. The new list replaces the current one. When not set, no change is made to the current list.
  • ignoreExpiredData Optional update of the flag indicating whether expired data should be ignored until refreshed. When not set, no change is made to the current flag state.
  • cacheDiskSize Optional update of the cache disk size, in bytes. When not set, no change is made to the current value.

Implementation

RasterDataSourceConfigurationUpdate(this.providerHeaders, this.ignoreExpiredData, this.cacheDiskSize);