Hash.parse constructor

Hash.parse(
  1. XmlElement element
)

Parse constructor for the Hash class, used when 'parsing' a feed

Implementation

factory Hash.parse(XmlElement element) => Hash(
      algo: element.getAttribute('algo'),
      value: element.text,
    );