VideoOverlay constructor

VideoOverlay(
  1. String videoUrl, {
  2. Key? key,
  3. required dynamic bounds,
  4. dynamic data,
  5. bool looping = true,
  6. required InteractiveLayerOptions options,
  7. dynamic onReady(
    1. VideoPlayerController?
    )?,
})

Implementation

VideoOverlay(
  this.videoUrl, {
  Key? key,
  required dynamic bounds,
  this.data,
  this.looping = true,
  required this.options,
  this.onReady,
})  : bounds = LatLngBounds.from(bounds),
      super(key: key);