OpmlDocument class

An object representing an XML document in the OPML (Outline Processor Markup Language) file format.

Constructors

OpmlDocument({required OpmlHead head, required Iterable<OpmlOutline> body})
OpmlDocument.parse(String xmlString)
Parses an xmlString as OPML.
factory

Properties

body Iterable<OpmlOutline>
The document's body element. It is represented as an Iterable of OpmlOutline objects.
final
hashCode int
The hash code for this object.
no setterinherited
The document's head element.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override
toXmlString({String indent = ' ', bool pretty = false}) String
Returns this object as an XML String.

Operators

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