toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final distinctRatio = this.distinctRatio;
final doubleProfile = this.doubleProfile;
final integerProfile = this.integerProfile;
final nullRatio = this.nullRatio;
final stringProfile = this.stringProfile;
final topNValues = this.topNValues;
return {
'distinctRatio': ?distinctRatio,
'doubleProfile': ?doubleProfile,
'integerProfile': ?integerProfile,
'nullRatio': ?nullRatio,
'stringProfile': ?stringProfile,
'topNValues': ?topNValues,
};
}