Pose constructor

Pose({
  1. double? pitch,
  2. double? roll,
  3. double? yaw,
})

Implementation

Pose({
  this.pitch,
  this.roll,
  this.yaw,
});