Quaternion.fromJSON(List<num>? json) { if (json != null) { _x = json[0]; _y = json[1]; _z = json[2]; _w = json[3]; } }