Controls a platform video player, and provides updates when the state is changing.

Instances are created asynchronously with create.

The video is displayed in a Flutter app by creating a VideoPlayer widget.

To reclaim the resources used by the player call dispose.

After dispose all further calls are ignored.

Inheritance

Properties

isDisposed bool
read / write
position Future<Duration>
The position in the current video.
read-only
timer Timer
read / write
hashCode int
The hash code for this object. [...]
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited
value T newValue
The current value stored in this notifier. [...]
read / write, inherited

Methods

dispose() Future<Null>
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 and removeListener will throw after the object is disposed). [...]
pause() Future<Null>
play() Future<Null>
seekTo(Duration moment) Future<Null>
setLooping(bool value) Future<Null>
addListener(VoidCallback listener) → void
Register a closure to be called when the object changes. [...]
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
notifyListeners() → void
Call all the registered listeners. [...]
@protected, inherited
removeListener(VoidCallback listener) → void
Remove a previously registered closure from the list of closures that are notified when the object changes. [...]
inherited
toString() String
Returns a string representation of this object.
inherited

Operators

operator ==(other) bool
The equality operator. [...]
inherited

Static Methods

create(String dataSource) Future<VideoPlayerController>