CertificateFingerprint.fromJson constructor

CertificateFingerprint.fromJson(
  1. Map _json
)

Implementation

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