BaseOverlayImage constructor

const BaseOverlayImage({
  1. Key? key,
  2. required ImageProvider<Object> imageProvider,
  3. double opacity = 1,
  4. bool gaplessPlayback = false,
  5. FilterQuality filterQuality = FilterQuality.medium,
})

Display an Image on the map at a specific coordinate location

Implementation

const BaseOverlayImage({
  super.key,
  required this.imageProvider,
  this.opacity = 1,
  this.gaplessPlayback = false,
  this.filterQuality = FilterQuality.medium,
});