VideoId class
Encapsulates a valid YouTube video ID.
Constructors
- VideoId(String idOrUrl)
- Initializes an instance of VideoId with a url or video id.
- VideoId.fromString(dynamic obj)
-
Converts
obj
to a VideoId by calling .toString on that object. If it is already a VideoId,obj
is returnedfactory
Properties
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
-
props
→ List<
Object> -
The list of properies that will be used to determine whether
two instances are equal.
read-only
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- stringify → bool
-
If set to
true
, the toString method will be overridden to output this instance's props. [...]read-only, inherited - value → String
-
ID as string.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
Returns a string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited
Static Methods
-
parseVideoId(
String url) → String - Parses a video id from url or if given a valid id as url returns itself. Returns null if the id couldn't be extracted.
-
validateVideoId(
String videoId) → bool -
Returns true if the given
videoId
is valid.