ResourceOptions constructor

ResourceOptions(
  1. {required String accessToken,
  2. String? baseURL,
  3. String? dataPath,
  4. String? assetPath,
  5. TileStoreUsageMode? tileStoreUsageMode}
)

Implementation

ResourceOptions({
  required this.accessToken,
  this.baseURL,
  this.dataPath,
  this.assetPath,
  this.tileStoreUsageMode,
});