SkyLayer constructor

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

Implementation

SkyLayer({
  required id,
  visibility,
  minZoom,
  maxZoom,
  slot,
  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,
          slot: slot);