toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final id = this.id;
final matchingVariantCount = this.matchingVariantCount;
final matchingVariantFields = this.matchingVariantFields;
final modelScores = this.modelScores;
final personalLabels = this.personalLabels;
final product = this.product;
final variantRollupValues = this.variantRollupValues;
return {
'id': ?id,
'matchingVariantCount': ?matchingVariantCount,
'matchingVariantFields': ?matchingVariantFields,
'modelScores': ?modelScores,
'personalLabels': ?personalLabels,
'product': ?product,
'variantRollupValues': ?variantRollupValues,
};
}