parsePathNode method
dynamic
parsePathNode(
- dynamic node
Implementation
parsePathNode(node) {
var d = node.getAttribute('d');
return parsePath(d);
}
parsePathNode(node) {
var d = node.getAttribute('d');
return parsePath(d);
}