toJson method
Implementation
Map<String, dynamic> toJson() {
final spekeKeyProvider = this.spekeKeyProvider;
final keyRotationIntervalSeconds = this.keyRotationIntervalSeconds;
return {
'spekeKeyProvider': spekeKeyProvider,
if (keyRotationIntervalSeconds != null)
'keyRotationIntervalSeconds': keyRotationIntervalSeconds,
};
}