AuthorizationCodeResponse.fromRawJson constructor

AuthorizationCodeResponse.fromRawJson(
  1. String str
)

Creates an instance of AuthorizationCodeResponse from a JSON string.

Implementation

factory AuthorizationCodeResponse.fromRawJson(String str) =>
    AuthorizationCodeResponse.fromJson(json.decode(str));