toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final context = this.context;
  final cryptoKey = this.cryptoKey;
  final lowerBoundDays = this.lowerBoundDays;
  final upperBoundDays = this.upperBoundDays;
  return {
    'context': ?context,
    'cryptoKey': ?cryptoKey,
    'lowerBoundDays': ?lowerBoundDays,
    'upperBoundDays': ?upperBoundDays,
  };
}