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