GoogleCloudIdentitytoolkitV1BatchDeleteAccountsResponse.fromJson constructor
GoogleCloudIdentitytoolkitV1BatchDeleteAccountsResponse.fromJson(
- Map _json
Implementation
GoogleCloudIdentitytoolkitV1BatchDeleteAccountsResponse.fromJson(
core.Map _json)
: this(
errors: _json.containsKey('errors')
? (_json['errors'] as core.List)
.map((value) =>
GoogleCloudIdentitytoolkitV1BatchDeleteErrorInfo.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);