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,
      );