nodePose method

Future<UArPose?> nodePose(
  1. String id
)

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);
}