Opml constructor

Opml({
  1. String? title,
  2. DateTime? dateCreated,
  3. DateTime? dateModified,
  4. String? ownerName,
  5. String? ownerEmail,
  6. String? ownerId,
  7. String? docs,
  8. String? expansionState,
  9. String? vertScrollState,
  10. String? windowTop,
  11. String? windowLeft,
  12. String? windowBottom,
  13. String? windowRight,
  14. List<OpmlItem>? items,
})

Implementation

Opml(
    {this.title,
    this.dateCreated,
    this.dateModified,
    this.ownerName,
    this.ownerEmail,
    this.ownerId,
    this.docs,
    this.expansionState,
    this.vertScrollState,
    this.windowTop,
    this.windowLeft,
    this.windowBottom,
    this.windowRight,
    this.items});