VideoDimension enum
The videoDimension
parameter lets you restrict a search to only retrieve 2D
or 3D videos. If you specify a value for this parameter, you must also set
the type
parameter's value to video
.
string
Acceptable values are:
2d
– Restrict search results to exclude 3D videos.3d
– Restrict search results to only include 3D videos.any
– Include both 3D and non-3D videos in returned results. This is the default value.
Values
- twoD → const VideoDimension
-
const VideoDimension('2d')
- threeD → const VideoDimension
-
const VideoDimension('3d')
- any → const VideoDimension
-
const VideoDimension('any')
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → String
-
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
-
fromString(
String string) → VideoDimension?
Constants
-
values
→ const List<
VideoDimension> - A constant List of the values in this enum, in order of their declaration.