toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final logicalProducts = this.logicalProducts;
final name = this.name;
final replaced = this.replaced;
final replacement = this.replacement;
final title = this.title;
return {
'logicalProducts': ?logicalProducts,
'name': ?name,
'replaced': ?replaced,
'replacement': ?replacement,
'title': ?title,
};
}