Quaternion constructor

Quaternion({
  1. double x = 0,
  2. double y = 0,
  3. double z = 0,
  4. double w = 0,
})

Implementation

Quaternion({this.x = 0, this.y = 0, this.z = 0, this.w = 0})
  : super(fullyQualifiedName);