ItunesImage.parse constructor

ItunesImage.parse(
  1. XmlElement element
)

Factory method to create an ItunesImage object from an XmlElement.

This method parses the element and extracts the 'href' attribute from it, which contains the URL of the iTunes image.

The extracted 'href' value is assigned to the href property of the ItunesImage object and returned. The 'href' value is also trimmed before assigning it to remove leading/trailing spaces.

Implementation

factory ItunesImage.parse(XmlElement element) {
  return ItunesImage(
    href: element.getAttribute('href')?.trim(),
  );
}