Point3d.fromJson constructor

Point3d.fromJson(
  1. Map<String, dynamic> json
)

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 Point3d.fromJson(final Map<String, dynamic> json) {
  return Point3d(x: json['x'], y: json['y'], z: json['z']);
}