toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final hasMatchingKeyword = this.hasMatchingKeyword;
  final hasNegativeKeyword = this.hasNegativeKeyword;
  final hasNegativeUrl = this.hasNegativeUrl;
  final headline = this.headline;
  final landingPage = this.landingPage;
  final pageUrl = this.pageUrl;
  final resourceName = this.resourceName;
  final searchTerm = this.searchTerm;
  return {
    'hasMatchingKeyword': ?hasMatchingKeyword,
    'hasNegativeKeyword': ?hasNegativeKeyword,
    'hasNegativeUrl': ?hasNegativeUrl,
    'headline': ?headline,
    'landingPage': ?landingPage,
    'pageUrl': ?pageUrl,
    'resourceName': ?resourceName,
    'searchTerm': ?searchTerm,
  };
}