AuthorizeRequest.fromJson constructor

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

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"],
    );