VimeoError.fromJsonNoneAuth constructor

VimeoError.fromJsonNoneAuth(
  1. Map<String, dynamic> json
)

Implementation

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