parsePathNode method

ShapePath parsePathNode(
  1. XmlElement node
)

Implementation

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