copyWith method

UArAnchor copyWith({
  1. UArPose? pose,
  2. UArTrackingState? tracking,
  3. String? cloudId,
})

Implementation

UArAnchor copyWith({UArPose? pose, UArTrackingState? tracking, String? cloudId}) =>
    UArAnchor(id: id, pose: pose ?? this.pose, type: type, tracking: tracking ?? this.tracking, name: name, cloudId: cloudId ?? this.cloudId, trackableId: trackableId);