AuthorizationErrorResponse.fromJson constructor

AuthorizationErrorResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AuthorizationErrorResponse.fromJson(Map<String, dynamic> json) =>
    AuthorizationErrorResponse(
      error: errorToAuthType(json["error"]),
      errorDescription: json["error_description"],
    );