VideoId class
Encapsulates a valid YouTube video ID.
- Annotations
-
- @freezed
Constructors
- VideoId(String idOrUrl)
-
Initializes an instance of VideoId with a url or video id.
factory
-
VideoId.fromJson(Map<
String, dynamic> json) -
factory
- 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
-
copyWith
→ $VideoIdCopyWith<
VideoId> -
Create a copy of VideoId
with the given fields replaced by the non-null parameter values.
no setterinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → String
-
ID as string.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
Serializes this VideoId to a JSON map.
inherited
-
toString(
) → String -
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.