constructor()

in misc/data-generator/src/data-generator.ts [25:34]


    constructor(props: DataGeneratorProps) {
        this.min = props.min;
        this.max = props.max;
        this.minIncrement = props.minIncrement;
        this.maxIncrement = props.maxIncrement;

        this.propertyId = props.propertyId;

        this.lastValue = this.generateRandomWithinBounds(this.min, this.max);
    }