ListOauthClientCredentialsResponse.fromJson constructor
ListOauthClientCredentialsResponse.fromJson(
- Map json_
Implementation
ListOauthClientCredentialsResponse.fromJson(core.Map json_)
: this(
oauthClientCredentials: json_.containsKey('oauthClientCredentials')
? (json_['oauthClientCredentials'] as core.List)
.map((value) => OauthClientCredential.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);