RssPodcastIndexTranscript class

This class represents a link to a transcript or closed captions file.

Multiple tags can be present for multiple transcript formats.

Constructors

RssPodcastIndexTranscript({String? url, String? type, String? language, String? rel})
const

Properties

hashCode int
The hash code for this object.
no setterinherited
language String?
The language of the linked transcript. If there is no language attribute given, the linked file is assumed to be the same language that is specified by the RSS <language> element.
final
rel String?
If the rel="captions" attribute is present, the linked file is considered to be a closed captions file, regardless of what the mime type is.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type String?
Mime type of the file such as text/plain, text/html, text/vtt, application/json, application/x-subrip
final
url String?
URL of the podcast transcript.
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

Static Methods

parse(XmlElement? element) RssPodcastIndexTranscript?