InfoWindow constructor

const InfoWindow({
  1. String? title,
  2. String? snippet,
  3. Offset anchor = const Offset(0.5, 0.0),
  4. VoidCallback? onClick,
  5. VoidCallback? onLongClick,
  6. VoidCallback? onClose,
})

Implementation

const InfoWindow({
  this.title,
  this.snippet,
  this.anchor = const Offset(0.5, 0.0),
  this.onClick,
  this.onLongClick,
  this.onClose,
});