parsePathNode method
ShapePath
parsePathNode(
- XmlElement node
Implementation
ShapePath parsePathNode(XmlElement node) {
final d = node.getAttribute('d')!;
return parsePath(d);
}
ShapePath parsePathNode(XmlElement node) {
final d = node.getAttribute('d')!;
return parsePath(d);
}