FillStyleLayer constructor

const FillStyleLayer({
  1. required String id,
  2. required String sourceId,
  3. Map<String, Object> layout = const {},
  4. Map<String, Object> paint = const {},
  5. double minZoom = 0,
  6. double maxZoom = 24,
  7. List<Object>? filter,
  8. String? sourceLayerId,
})

Default constructor for a FillStyleLayer instance.

Implementation

const FillStyleLayer({
  required super.id,
  required super.sourceId,
  super.layout,
  super.paint,
  super.minZoom = 0,
  super.maxZoom = 24,
  super.filter,
  super.sourceLayerId,
});