CertificateFingerprint.fromJson constructor
CertificateFingerprint.fromJson(
- Map _json
Implementation
CertificateFingerprint.fromJson(core.Map _json)
: this(
sha256Hash: _json.containsKey('sha256Hash')
? _json['sha256Hash'] as core.String
: null,
);