VimeoError.fromJsonNoneAuth constructor
Implementation
factory VimeoError.fromJsonNoneAuth(Map<String, dynamic> json) {
return VimeoError(
error: json['message'],
link: null,
developerMessage: json['title'],
errorCode: null,
);
}