GoogleCloudIdentitytoolkitV1BatchDeleteAccountsResponse.fromJson constructor

GoogleCloudIdentitytoolkitV1BatchDeleteAccountsResponse.fromJson(
  1. Map json_
)

Implementation

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