getImageSprite method
Implementation
Future<Uint8List?> getImageSprite(double time) async {
await _initPlayer.future;
UInt8ListMsg int8listMsg = await _vodPlayerApi.getImageSprite(DoublePlayerMsg()
..value = time
..playerId = _playerId);
return int8listMsg.value;
}