File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -177,10 +177,13 @@ class VlcPlayerController {
177177
178178 int get audioCount => _audioCount;
179179 int _audioCount = 1 ;
180+
180181 int get activeAudioNum => _activeAudioNum;
181182 int _activeAudioNum = 1 ;
183+
182184 int get activeSubtitleNum => _activeSubtitleNum;
183185 int _activeSubtitleNum;
186+
184187 int get subtitleCount => _subtitleCount;
185188 int _subtitleCount = 0 ;
186189
@@ -381,7 +384,8 @@ class VlcPlayerController {
381384 }
382385
383386 Future <Uint8List > takeSnapshot () async {
384- var result = await _methodChannel.invokeMethod ("getSnapshot" , {'getSnapShot' : '' });
387+ var result =
388+ await _methodChannel.invokeMethod ("getSnapshot" , {'getSnapShot' : '' });
385389 var base64String = result['snapshot' ];
386390 Uint8List imageBytes = CryptoUtils .base64StringToBytes (base64String);
387391 return imageBytes;
You can’t perform that action at this time.
0 commit comments