LiveItem class

Represents a live item with status, start, end, and item attributes.

The LiveItem class corresponds to the live-item element in the podcast namespace.

Constructors

LiveItem({LiveItemStatus? status, DateTime? start, DateTime? end, required RssItem item})
Constructor for creating a LiveItem object.
LiveItem.parse(XmlElement element)
Factory method to parse an XmlElement and create a LiveItem object from it.
factory

Properties

end DateTime?
The end time of the live item.
final
hashCode int
The hash code for this object.
no setterinherited
item RssItem
The RssItem associated with the live item.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
start DateTime?
The start time of the live item.
final
status LiveItemStatus?
The status of the live item represented by a LiveItemStatus enum.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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