WidgetOverlay constructor

WidgetOverlay({
  1. Key? key,
  2. Widget? child,
  3. required dynamic bounds,
  4. double? opacity,
  5. double? rotation,
  6. dynamic data,
  7. InteractiveLayerOptions? options,
})

Implementation

WidgetOverlay({
  Key? key,
  this.child,
  required dynamic bounds,
  this.opacity,
  this.rotation,
  this.data,
  this.options,
})  : assert(bounds != null),
      bounds = LatLngBounds.from(bounds),
      super(key: key, options: options);