ListCertificateRevocationListsResponse.fromJson constructor

ListCertificateRevocationListsResponse.fromJson(
  1. Map _json
)

Implementation

ListCertificateRevocationListsResponse.fromJson(core.Map _json)
    : this(
        certificateRevocationLists:
            _json.containsKey('certificateRevocationLists')
                ? (_json['certificateRevocationLists'] as core.List)
                    .map((value) => CertificateRevocationList.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                    .toList()
                : null,
        nextPageToken: _json.containsKey('nextPageToken')
            ? _json['nextPageToken'] as core.String
            : null,
        unreachable: _json.containsKey('unreachable')
            ? (_json['unreachable'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );