getVideoSnapshot method

Future<Uint8List> getVideoSnapshot({
  1. required String filePath,
})

Implementation

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