getVideoInfo method

Future<VideoData?> getVideoInfo(
  1. String path
)

Implementation

Future<VideoData?> getVideoInfo(String path) async {
  final jsonStr = await _channel.invokeMethod('getVidInfo', {"path": path});
  final jsonMap = json.decode(jsonStr);
  if (!jsonMap["isfileexist"]) {
    developer.log(
        'Video file path is wrong or does not exists. Please recheck file path.',
        name: 'FlutterVideoInfo');
  }
  return VideoData.fromJson(jsonMap);
}