OpmlItem constructor

OpmlItem({
  1. String? title,
  2. String? text,
  3. String? description,
  4. String? type,
  5. String? version,
  6. String? xmlUrl,
  7. String? htmlUrl,
  8. String? language,
  9. List<OpmlItem>? nesteditems,
})

Implementation

OpmlItem(
    {this.title,
    this.text,
    this.description,
    this.type,
    this.version,
    this.xmlUrl,
    this.htmlUrl,
    this.language,
    this.nesteditems});