ARPlaneAnchor constructor
ARPlaneAnchor({})
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);