nodePose method
World pose of a node right now.
Implementation
Future<UArPose?> nodePose(String id) async {
final List<Object?>? raw = await _invoke<List<Object?>>("nodePose", <String, Object?>{"id": id});
return raw == null ? null : UArPose.fromList(raw);
}