screenshot method

Future<Uint8List?> screenshot()

Take a screenshot of the current frame of the video

The return value is Uint8List?

Implementation

Future<Uint8List?> screenshot() async {
  return await _player.screenshot();
}