AuthorizeRequest.fromJson constructor
Implementation
factory AuthorizeRequest.fromJson(Map<String, dynamic> json) =>
AuthorizeRequest(
clientId: json["client_id"],
codeChallenge: json["code_challenge"],
codeChallengeMethod: json["code_challenge_method"],
redirectUri: json["redirect_uri"],
responseType: json["response_type"],
);