toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final caPools = this.caPools;
final keyAlgorithm = this.keyAlgorithm;
final lifetime = this.lifetime;
final rotationWindowPercentage = this.rotationWindowPercentage;
return {
'caPools': ?caPools,
'keyAlgorithm': ?keyAlgorithm,
'lifetime': ?lifetime,
'rotationWindowPercentage': ?rotationWindowPercentage,
};
}