GraphicsLayer constructor

GraphicsLayer({
  1. String? id,
  2. List<Graphic>? data,
  3. void onPressed()?,
  4. GraphicsLayerOptions? options,
  5. void onChanged(
    1. LatLng
    )?,
})

Implementation

GraphicsLayer({
  this.id,
  this.data,
  this.onPressed,
  this.options,
  this.onChanged,
});