ListOauthClientCredentialsResponse.fromJson constructor

ListOauthClientCredentialsResponse.fromJson(
  1. Map json_
)

Implementation

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