PositionOrientation.fromJson constructor
Deserializes a JSON-compatible map to create an instance.
Used internally, not intended for direct use by consumers. The expected map structure may change without notice.
Implementation
factory PositionOrientation.fromJson(final Map<String, dynamic> json) {
return PositionOrientation(
position: Point3d.fromJson(json['position']),
orientation: Point4d.fromJson(json['orientation']),
);
}