Status constructor
- Pose? endPosition,
- JointPositions? jointPositions,
- bool? isMoving,
Implementation
factory Status({
$14.Pose? endPosition,
JointPositions? jointPositions,
$core.bool? isMoving,
}) {
final $result = create();
if (endPosition != null) {
$result.endPosition = endPosition;
}
if (jointPositions != null) {
$result.jointPositions = jointPositions;
}
if (isMoving != null) {
$result.isMoving = isMoving;
}
return $result;
}