FillLayer constructor

FillLayer(
  1. {required dynamic id,
  2. dynamic visibility,
  3. dynamic minZoom,
  4. dynamic maxZoom,
  5. required String sourceId,
  6. String? sourceLayer,
  7. double? fillSortKey,
  8. bool? fillAntialias,
  9. int? fillColor,
  10. double? fillOpacity,
  11. int? fillOutlineColor,
  12. String? fillPattern,
  13. List<double?>? fillTranslate,
  14. FillTranslateAnchor? fillTranslateAnchor}
)

Implementation

FillLayer({
  required id,
  visibility,
  minZoom,
  maxZoom,
  required this.sourceId,
  this.sourceLayer,
  this.fillSortKey,
  this.fillAntialias,
  this.fillColor,
  this.fillOpacity,
  this.fillOutlineColor,
  this.fillPattern,
  this.fillTranslate,
  this.fillTranslateAnchor,
}) : super(
          id: id, visibility: visibility, maxZoom: maxZoom, minZoom: minZoom);