CertificateOptions.fromJson constructor

CertificateOptions.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CertificateOptions.fromJson(Map<String, dynamic> json) {
  return CertificateOptions(
    certificateTransparencyLoggingPreference:
        (json['CertificateTransparencyLoggingPreference'] as String?)
            ?.toCertificateTransparencyLoggingPreference(),
  );
}