Point4d.fromJson constructor

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

Implementation

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