RotationData constructor

const RotationData({
  1. required double x,
  2. required double y,
  3. required double z,
  4. required double w,
  5. required int timestamp,
})

Implementation

const RotationData({
  required this.x,
  required this.y,
  required this.z,
  required this.w,
  required this.timestamp,
});