OpmlHead class

Represents the head element of an OPML document, containing the document's metadata. All fields are optional.

Constructors

OpmlHead({String? title, String? dateCreated, String? dateModified, String? ownerName, String? ownerEmail, String? ownerId, String? docs, String? expansionState, int? vertScrollState, int? windowTop, int? windowLeft, int? windowRight, int? windowBottom})
OpmlHead.parse(XmlElement head)
factory

Properties

dateCreated String?
A date-time, indicating when the document was created.
final
dateModified String?
A date-time, indicating when the document was last modified.
final
docs String?
A link to documentation about the format used in the OPML file.
final
expansionState String?
A comma-separated list of line numbers that are expanded. The line numbers tell you which headlines to expand.
final
hashCode int
The hash code for this object.
no setterinherited
ownerEmail String?
The email address of the document's owner.
final
ownerId String?
A link to the website of the document's owner. It also may be used to identify the author.
final
ownerName String?
The owner of the document.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
title String?
The title of the document.
final
vertScrollState int?
A number indicating which line of the outline is displayed on the top line of the window.
final
windowBottom int?
The pixel location of the bottom edge of the window.
final
windowLeft int?
The pixel location of the left edge of the window.
final
windowRight int?
The pixel location of the right edge of the window.
final
windowTop int?
The pixel location of the top edge of the window.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toMap() Map<String, dynamic>
Converts this object to a Map.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited