getVideoInfo static method

Future<VideoInfo> getVideoInfo(
  1. File file
)

Implementation

static Future<VideoInfo> getVideoInfo(
  File file,
) async {
  final json = await _invokeMethod('getVideoInfo', {
    'path': file.path,
  });
  return VideoInfo.fromJson(json);
}