ARPlaneAnchor constructor

ARPlaneAnchor({
  1. required Matrix4 transformation,
  2. String? name,
  3. List<String>? childNodes,
  4. String? cloudanchorid,
  5. int? ttl,
})

Implementation

ARPlaneAnchor({
  required Matrix4 transformation,
  String? name,
  List<String>? childNodes,
  String? cloudanchorid,
  int? ttl,
})  : childNodes = childNodes ?? [],
      cloudanchorid = cloudanchorid ?? null,
      ttl = ttl ?? 1,
      super(
          type: AnchorType.plane, transformation: transformation, name: name);