VideoController class

A wrapper around VideoPlayerController.

This version maintains state about the full-screen mode.

Inheritance

Constructors

VideoController.network(String url)
Plays a video from the network.

Properties

closedCaptionFile Future<ClosedCaptionFile>?
Returns the file containing closed captions for the video, if any.
no setterinherited
dataSource String
The URI to the video file. This will be in different formats depending on the DataSourceType of the original video.
finalinherited
dataSourceType → DataSourceType
Describes the type of data source this VideoPlayerController is constructed with.
finalinherited
formatHint → VideoFormat?
Android only. Will override the platform's generic file format detection with whatever is set here.
finalinherited
hashCode int
The hash code for this object.
no setterinherited
hasListeners bool
Whether any listeners are currently registered.
no setterinherited
httpHeaders Map<String, String>
HTTP headers used for the request to the dataSource. Only for VideoPlayerController.network. Always empty for other video types.
finalinherited
isFullScreen bool
Whether this video is being played in full screen.
getter/setter pair
package String?
Only set for asset videos. The package that the asset was loaded from.
finalinherited
position Future<Duration?>
The position in the current video.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
textureId int
This is just exposed for testing. It shouldn't be used by anyone depending on the plugin.
no setterinherited
value ↔ VideoPlayerValue
The current value stored in this notifier.
getter/setter pairinherited
videoPlayerOptions → VideoPlayerOptions?
Provide additional configuration options (optional). Like setting the audio mode to mix
finalinherited

Methods

addListener(VoidCallback listener) → void
Register a closure to be called when the object changes.
inherited
dispose() Future<void>
Discards any resources used by the object. After this is called, the object is not in a usable state and should be discarded (calls to addListener will throw after the object is disposed).
inherited
initialize() Future<void>
Attempts to open the given dataSource and load metadata about the video.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
notifyListeners() → void
Call all the registered listeners.
inherited
pause() Future<void>
Pauses the video.
inherited
play() Future<void>
Starts playing the video.
inherited
removeListener(VoidCallback listener) → void
Remove a previously registered closure from the list of closures that are notified when the object changes.
inherited
seekTo(Duration position) Future<void>
Sets the video's current timestamp to be at moment. The next time the video is played it will resume from the given moment.
inherited
setCaptionOffset(Duration offset) → void
Sets the caption offset.
inherited
setClosedCaptionFile(Future<ClosedCaptionFile>? closedCaptionFile) Future<void>
Sets a closed caption file.
inherited
setLooping(bool looping) Future<void>
Sets whether or not the video should loop after playing once. See also VideoPlayerValue.isLooping.
inherited
setPlaybackSpeed(double speed) Future<void>
Sets the playback speed of this.
inherited
setVolume(double volume) Future<void>
Sets the audio volume of this.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited