toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cache = this.cache;
  final customFeatures = this.customFeatures;
  final cycle = this.cycle;
  final increment = this.increment;
  final maxValue = this.maxValue;
  final minValue = this.minValue;
  final startValue = this.startValue;
  return {
    'cache': ?cache,
    'customFeatures': ?customFeatures,
    'cycle': ?cycle,
    'increment': ?increment,
    'maxValue': ?maxValue,
    'minValue': ?minValue,
    'startValue': ?startValue,
  };
}