Anchor constructor

Anchor({
  1. Widget? child,
  2. required String name,
  3. String? description,
  4. double? zoom,
  5. bool setX = false,
})

Implementation

Anchor({
  Widget? child,
  required this.name,
  this.description,
  this.zoom,
  this.setX = false,
}) : super(child: child);