TGetOauth2CredentialResponse.fromJson constructor

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

Implementation

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