play method
Starts playing the video.
Implementation
Future<void> play() async {
value = value.copyWith(isPlaying: true);
await _applyPlayPause();
}
Starts playing the video.
Future<void> play() async {
value = value.copyWith(isPlaying: true);
await _applyPlayPause();
}