screenshot method

Future<Uint8List?> screenshot({
  1. String? format = 'image/jpeg',
})

Implementation

Future<Uint8List?> screenshot({String? format = 'image/jpeg'}) async {
  throw UnimplementedError(
    '[PlatformPlayer.screenshot] is not implemented',
  );
}