Anchor constructor

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

Implementation

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