toJson method

Map<String, dynamic> toJson()

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,
  };
}