Soundbite class

Represents a soundbite with startTime, duration, and value attributes.

The Soundbite class corresponds to the soundbite element in the podcast namespace.

Constructors

Soundbite({double? startTime, double? duration, String? value})
Constructor for creating a Soundbite object.
Soundbite.parse(XmlElement element)
Factory method to parse an XmlElement and create a Soundbite object from it.
factory

Properties

duration double?
The duration attribute value of the soundbite.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
startTime double?
The startTime attribute value of the soundbite.
final
value String?
The value of the soundbite.
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