toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final enabled = this.enabled;
final productTosUrl = this.productTosUrl;
final tosAcceptance = this.tosAcceptance;
return {
'enabled': ?enabled,
'productTosUrl': ?productTosUrl,
'tosAcceptance': ?tosAcceptance,
};
}