toJson method

Map<String, dynamic> toJson()

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