toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final isFeedDisabled = this.isFeedDisabled;
final productMatchDimensions = this.productMatchDimensions;
final productMatchType = this.productMatchType;
return {
'isFeedDisabled': ?isFeedDisabled,
'productMatchDimensions': ?productMatchDimensions,
'productMatchType': ?productMatchType,
};
}