Vector3.fromJSON(List<double>? json) { if (json != null) { x = json[0]; y = json[1]; z = json[2]; } }