BackgroundLayer constructor

BackgroundLayer(
  1. {required dynamic id,
  2. dynamic visibility,
  3. dynamic minZoom,
  4. dynamic maxZoom,
  5. dynamic slot,
  6. int? backgroundColor,
  7. double? backgroundEmissiveStrength,
  8. double? backgroundOpacity,
  9. String? backgroundPattern}
)

Implementation

BackgroundLayer({
  required id,
  visibility,
  minZoom,
  maxZoom,
  slot,
  this.backgroundColor,
  this.backgroundEmissiveStrength,
  this.backgroundOpacity,
  this.backgroundPattern,
}) : super(
          id: id,
          visibility: visibility,
          maxZoom: maxZoom,
          minZoom: minZoom,
          slot: slot);