toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final max = this.max;
  final min = this.min;
  final replacementValue = this.replacementValue;
  return {'max': ?max, 'min': ?min, 'replacementValue': ?replacementValue};
}