Pose constructor

Pose({
  1. List<double>? head,
  2. List<double>? body,
  3. List<double>? lleg,
  4. List<double>? rleg,
  5. List<double>? larm,
  6. List<double>? rarm,
})

An armorstand Pose describing rotations of all body parts

Pose
head List of double values for the rotation
body same...
lleg same...
rleg same...
larm same...
rarm same...

Implementation

Pose({
  this.head,
  this.body,
  this.lleg,
  this.rleg,
  this.larm,
  this.rarm,
});