GoogleCloudIdentitytoolkitV1UploadAccountResponse.fromJson constructor

GoogleCloudIdentitytoolkitV1UploadAccountResponse.fromJson(
  1. Map _json
)

Implementation

GoogleCloudIdentitytoolkitV1UploadAccountResponse.fromJson(core.Map _json)
    : this(
        error: _json.containsKey('error')
            ? (_json['error'] as core.List)
                .map((value) =>
                    GoogleCloudIdentitytoolkitV1ErrorInfo.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        kind: _json.containsKey('kind') ? _json['kind'] as core.String : null,
      );