ClusterTrustBundleSpec.fromJson constructor
Creates a ClusterTrustBundleSpec from JSON data.
Implementation
factory ClusterTrustBundleSpec.fromJson(Map<String, dynamic> json) {
final tempSignerNameJson = json['signerName'];
final tempTrustBundleJson = json['trustBundle'];
final String? tempSignerName = tempSignerNameJson;
final String tempTrustBundle = tempTrustBundleJson;
return ClusterTrustBundleSpec(
signerName: tempSignerName,
trustBundle: tempTrustBundle,
);
}