ClipLayer constructor

ClipLayer({
  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. List<String?>? clipLayerScope,
  11. List<Object>? clipLayerScopeExpression,
  12. List<String?>? clipLayerTypes,
  13. List<Object>? clipLayerTypesExpression,
})

Implementation

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

  this.clipLayerScope,
  this.clipLayerScopeExpression,
  this.clipLayerTypes,
  this.clipLayerTypesExpression,
});