Copyright.parse constructor

Copyright.parse(
  1. XmlElement element
)

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

Implementation

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