getVimeoData method
id : video id
Implementation
Future<dynamic> getVimeoData({required String id}) async {
Uri uri = Uri.parse("https://player.vimeo.com/video/$id/config");
var res = await http.get(uri);
if (res.statusCode != 200) {
throw VimeoError(
error: res.reasonPhrase,
developerMessage:
"Please check your video id\nand accessibility is public",
errorCode: res.statusCode);
}
return jsonDecode(res.body);
}