Point3d.fromJson constructor

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

Implementation

factory Point3d.fromJson(final Map<String, dynamic> json) {
  return Point3d(x: json['x'], y: json['y'], z: json['z']);
}