GroupElementP3.fromJson constructor
Implementation
factory GroupElementP3.fromJson(Map<String, dynamic> json) {
return GroupElementP3.uncheck(
x: FieldElement.fromJson(json["x"]),
y: FieldElement.fromJson(json["y"]),
z: FieldElement.fromJson(json["z"]),
t: FieldElement.fromJson(json["t"]));
}