X509.fromJson constructor
X509.fromJson(
- Map json_
Implementation
X509.fromJson(core.Map json_)
: this(
trustStore:
json_.containsKey('trustStore')
? TrustStore.fromJson(
json_['trustStore'] as core.Map<core.String, core.dynamic>,
)
: null,
);