SslCertificatesScopedList.fromJson constructor
SslCertificatesScopedList.fromJson(
- Map json_
Implementation
SslCertificatesScopedList.fromJson(core.Map json_)
: this(
sslCertificates: json_.containsKey('sslCertificates')
? (json_['sslCertificates'] as core.List)
.map((value) => SslCertificate.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
warning: json_.containsKey('warning')
? SslCertificatesScopedListWarning.fromJson(
json_['warning'] as core.Map<core.String, core.dynamic>)
: null,
);