SkyLayer constructor

SkyLayer({
  1. required dynamic id,
  2. dynamic visibility,
  3. dynamic minZoom,
  4. dynamic maxZoom,
  5. int? skyAtmosphereColor,
  6. int? skyAtmosphereHaloColor,
  7. List<double?>? skyAtmosphereSun,
  8. double? skyAtmosphereSunIntensity,
  9. int? skyGradient,
  10. List<double?>? skyGradientCenter,
  11. double? skyGradientRadius,
  12. double? skyOpacity,
  13. SkyType? skyType,
})

Implementation

SkyLayer({
  required id,
  visibility,
  minZoom,
  maxZoom,
  this.skyAtmosphereColor,
  this.skyAtmosphereHaloColor,
  this.skyAtmosphereSun,
  this.skyAtmosphereSunIntensity,
  this.skyGradient,
  this.skyGradientCenter,
  this.skyGradientRadius,
  this.skyOpacity,
  this.skyType,
}) : super(
          id: id, visibility: visibility, maxZoom: maxZoom, minZoom: minZoom);