Skip to content

Commit af3373d

Browse files
author
Illia Romanenko
committed
auto-format file to improve readability
1 parent 6fcee85 commit af3373d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/flutter_vlc_player.dart

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)