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