clone method
Implementation
ParseStateMaterial clone(index) {
final cloned = ParseStateMaterial({
"index": (index is num ? index : this.index),
"name": name,
"mtllib": mtllib,
"smooth": smooth,
"groupStart": 0,
"groupEnd": -1,
"groupCount": -1,
"inherited": false
});
return cloned;
}