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