getVideoSnapshot method
Implementation
Future<Uint8List> getVideoSnapshot({required String filePath}) async {
Map<String, dynamic> args = <String, dynamic>{'filePath': filePath};
return await _channel.invokeMethod('getVideoSnapshot', args);
}
Future<Uint8List> getVideoSnapshot({required String filePath}) async {
Map<String, dynamic> args = <String, dynamic>{'filePath': filePath};
return await _channel.invokeMethod('getVideoSnapshot', args);
}