Locator constructor

const Locator({
  1. Key? key,
  2. Widget? icon,
  3. Alignment alignment = Alignment.bottomRight,
  4. EdgeInsets margin = const EdgeInsets.only(right: 20, bottom: 24),
  5. double toZoom = 16,
})

Implementation

const Locator({
  super.key,
  this.icon,
  this.alignment = Alignment.bottomRight,
  this.margin = const EdgeInsets.only(right: 20, bottom: 24),
  this.toZoom = 16,
});