TrustConfig.fromJson constructor

TrustConfig.fromJson(
  1. Map json_
)

Implementation

TrustConfig.fromJson(core.Map json_)
  : this(
      casConfigs:
          (json_['casConfigs'] as core.List?)
              ?.map(
                (value) => CertificateAuthorityServiceConfig.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );