MorphTarget constructor
Implementation
MorphTarget(Map<String, dynamic>? json) {
if (json != null) {
if (json["name"] != null) name = json["name"];
if (json["vertices"] != null) vertices = json["vertices"];
if (json["normals"] != null) normals = json["normals"];
}
}