RasterParticleLayer constructor

RasterParticleLayer({
  1. required String id,
  2. Visibility? visibility,
  3. List<Object>? visibilityExpression,
  4. List<Object>? filter,
  5. double? minZoom,
  6. double? maxZoom,
  7. String? slot,
  8. required String sourceId,
  9. String? sourceLayer,
  10. String? rasterParticleArrayBand,
  11. List<Object>? rasterParticleArrayBandExpression,
  12. int? rasterParticleColor,
  13. List<Object>? rasterParticleColorExpression,
  14. double? rasterParticleCount,
  15. List<Object>? rasterParticleCountExpression,
  16. double? rasterParticleFadeOpacityFactor,
  17. List<Object>? rasterParticleFadeOpacityFactorExpression,
  18. double? rasterParticleMaxSpeed,
  19. List<Object>? rasterParticleMaxSpeedExpression,
  20. double? rasterParticleResetRateFactor,
  21. List<Object>? rasterParticleResetRateFactorExpression,
  22. double? rasterParticleSpeedFactor,
  23. List<Object>? rasterParticleSpeedFactorExpression,
})

Implementation

RasterParticleLayer({
  required super.id,
  super.visibility,
  super.visibilityExpression,
  super.filter,
  super.minZoom,
  super.maxZoom,
  super.slot,
  required this.sourceId,
  this.sourceLayer,

  this.rasterParticleArrayBand,
  this.rasterParticleArrayBandExpression,
  this.rasterParticleColor,
  this.rasterParticleColorExpression,
  this.rasterParticleCount,
  this.rasterParticleCountExpression,
  this.rasterParticleFadeOpacityFactor,
  this.rasterParticleFadeOpacityFactorExpression,
  this.rasterParticleMaxSpeed,
  this.rasterParticleMaxSpeedExpression,
  this.rasterParticleResetRateFactor,
  this.rasterParticleResetRateFactorExpression,
  this.rasterParticleSpeedFactor,
  this.rasterParticleSpeedFactorExpression,
});