BackgroundLayer constructor

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

Implementation

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