ImageMapRegion constructor

const ImageMapRegion({
  1. required ImageMapShape shape,
  2. required Path path,
  3. Color color = Colors.transparent,
  4. String? title,
  5. String? link,
})

Implementation

const ImageMapRegion({
  required this.shape,
  required this.path,
  this.color = Colors.transparent,
  this.title,
  this.link,
});