ListCertificatesResponse.fromJson constructor
ListCertificatesResponse.fromJson(
- Map _json
Implementation
ListCertificatesResponse.fromJson(core.Map _json)
: this(
certificates: _json.containsKey('certificates')
? (_json['certificates'] as core.List)
.map<Certificate>((value) => Certificate.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<core.String>((value) => value as core.String)
.toList()
: null,
);