OpmlOutline class

Represents an outline element of an OPML document. Each outline element may contain zero or more outline child-elements.

Constructors

OpmlOutline({String? text, String? title, String? type, bool? isComment, bool? isBreakpoint, String? created, String? category, String? description, String? language, String? htmlUrl, String? xmlUrl, String? version, Iterable<OpmlOutline>? children})
OpmlOutline.parse(XmlElement element)
factory

Properties

category String?
A string of comma-separated slash-delimited category strings, in the format defined by the RSS 2.0 category element.
final
children Iterable<OpmlOutline>?
An Iterable of this object's child elements. If children is empty, then this element has no outline sub-elements.
final
created String?
The date-time the outline was created.
final
description String?
The top-level description element from the feed.
final
hashCode int
The hash code for this object.
no setterinherited
htmlUrl String?
The top-level link element of the feed.
final
isBreakpoint bool?
A boolean indicating whether or not a breakpoint is set on this outline.
final
isComment bool?
A boolean indicating whether the outline is commented or not.
final
language String?
The value of the top-level language element.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
text String?
The element's text attribute.
final
title String?
title is probably the same as text, it should not be omitted. title contains the top-level title element from the feed.
final
type String?
A String indicating how the other attributes of the outline are interpreted.
final
version String?
The version of RSS that's being supplied.
final
xmlUrl String?
The HTTP address of the feed.
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