Title.parse constructor

Title.parse(
  1. XmlElement element
)

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

Implementation

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