v1GetOauth2CredentialResponse.fromJson constructor

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

Implementation

factory v1GetOauth2CredentialResponse.fromJson(Map<String, dynamic> json) {
  final _oauth2Credential = v1Oauth2Credential.fromJson(json['oauth2Credential'] as Map<String, dynamic>);
  return v1GetOauth2CredentialResponse(
    oauth2Credential: _oauth2Credential,
  );
}