call method

  1. @override
Pose call({
  1. Point? position,
  2. Quaternion? orientation,
})

Implementation

@override
Pose call({
  Point? position,
  Quaternion? orientation,
}) => Pose(
position: position,
orientation: orientation,
);