TrustConfig.fromJson constructor
TrustConfig.fromJson(
- Map json_
Implementation
TrustConfig.fromJson(core.Map json_)
: this(
allowlistedCertificates:
(json_['allowlistedCertificates'] as core.List?)
?.map(
(value) => AllowlistedCertificate.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
createTime: json_['createTime'] as core.String?,
description: json_['description'] as core.String?,
etag: json_['etag'] as core.String?,
labels: (json_['labels'] as core.Map<core.String, core.dynamic>?)?.map(
(key, value) => core.MapEntry(key, value as core.String),
),
name: json_['name'] as core.String?,
trustStores:
(json_['trustStores'] as core.List?)
?.map(
(value) => TrustStore.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
updateTime: json_['updateTime'] as core.String?,
);