ViewAnchor constructor

const ViewAnchor(
  1. {Key? key,
  2. Widget? view,
  3. required Widget child}
)

Creates a ViewAnchor widget.

Implementation

const ViewAnchor({
  super.key,
  this.view,
  required this.child,
});