$CertChain.fromJson constructor

$CertChain.fromJson(
  1. Map json_
)

Implementation

$CertChain.fromJson(core.Map json_)
    : this(
        certificates: json_.containsKey('certificates')
            ? (json_['certificates'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );