videoData property

  1. @override
Future<VideoData> videoData

Returns the VideoData for the currently loaded/playing video.

Implementation

@override
Future<VideoData> get videoData async {
  final videoData = await _evalWithResult('getVideoData()');

  return VideoData.fromMap(jsonDecode(videoData));
}