toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final categoricalValues = this.categoricalValues;
  final discreteValues = this.discreteValues;
  final maxValue = this.maxValue;
  final minValue = this.minValue;
  final parameterName = this.parameterName;
  final scaleType = this.scaleType;
  final type = this.type;
  return {
    'categoricalValues': ?categoricalValues,
    'discreteValues': ?discreteValues,
    'maxValue': ?maxValue,
    'minValue': ?minValue,
    'parameterName': ?parameterName,
    'scaleType': ?scaleType,
    'type': ?type,
  };
}