Layer constructor

Layer({
  1. required String id,
  2. Visibility? visibility,
  3. List<Object>? visibilityExpression,
  4. List<Object>? filter,
  5. double? maxZoom,
  6. double? minZoom,
  7. String? slot,
})

Implementation

Layer({
  required this.id,
  this.visibility,
  this.visibilityExpression,
  this.filter,
  this.maxZoom,
  this.minZoom,
  this.slot,
});