Hotspot constructor

Hotspot({
  1. String? name,
  2. double latitude = 0.0,
  3. double longitude = 0.0,
  4. Offset orgin = const Offset(0.5, 0.5),
  5. double width = 32.0,
  6. double height = 32.0,
  7. Widget? widget,
})

Implementation

Hotspot({
  this.name,
  this.latitude = 0.0,
  this.longitude = 0.0,
  this.orgin = const Offset(0.5, 0.5),
  this.width = 32.0,
  this.height = 32.0,
  this.widget,
});