CertificateMapEntry.fromJson constructor

CertificateMapEntry.fromJson(
  1. Map json_
)

Implementation

CertificateMapEntry.fromJson(core.Map json_)
    : this(
        certificates: json_.containsKey('certificates')
            ? (json_['certificates'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        description: json_.containsKey('description')
            ? json_['description'] as core.String
            : null,
        hostname: json_.containsKey('hostname')
            ? json_['hostname'] as core.String
            : null,
        labels: json_.containsKey('labels')
            ? (json_['labels'] as core.Map<core.String, core.dynamic>).map(
                (key, value) => core.MapEntry(
                  key,
                  value as core.String,
                ),
              )
            : null,
        matcher: json_.containsKey('matcher')
            ? json_['matcher'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        state:
            json_.containsKey('state') ? json_['state'] as core.String : null,
        updateTime: json_.containsKey('updateTime')
            ? json_['updateTime'] as core.String
            : null,
      );