getVideoDetails method

Future<Map?> getVideoDetails()

Returns the details of the currently playing video

Implementation

Future<Map<dynamic, dynamic>?> getVideoDetails() async {
  return await _methodChannel
      .invokeMethod<Map<dynamic, dynamic>>('getVideoDetails');
}