ARAnchor constructor

ARAnchor({
  1. required AnchorType type,
  2. required Matrix4 transformation,
  3. String? name,
})

Implementation

ARAnchor({
  required this.type,
  required this.transformation,
  String? name,
}) : name = name ?? UniqueKey().toString();