toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final aggregatorInfo = this.aggregatorInfo;
  final averageFiveStarRating = this.averageFiveStarRating;
  final averageWeeklyBudget = this.averageWeeklyBudget;
  final businessName = this.businessName;
  final currencyCode = this.currencyCode;
  final currentPeriodChargedLeads = this.currentPeriodChargedLeads;
  final currentPeriodConnectedPhoneCalls =
      this.currentPeriodConnectedPhoneCalls;
  final currentPeriodPhoneCalls = this.currentPeriodPhoneCalls;
  final currentPeriodTotalCost = this.currentPeriodTotalCost;
  final impressionsLastTwoDays = this.impressionsLastTwoDays;
  final phoneLeadResponsiveness = this.phoneLeadResponsiveness;
  final previousPeriodChargedLeads = this.previousPeriodChargedLeads;
  final previousPeriodConnectedPhoneCalls =
      this.previousPeriodConnectedPhoneCalls;
  final previousPeriodPhoneCalls = this.previousPeriodPhoneCalls;
  final previousPeriodTotalCost = this.previousPeriodTotalCost;
  final totalReview = this.totalReview;
  return {
    'accountId': ?accountId,
    'aggregatorInfo': ?aggregatorInfo,
    'averageFiveStarRating': ?averageFiveStarRating,
    'averageWeeklyBudget': ?averageWeeklyBudget,
    'businessName': ?businessName,
    'currencyCode': ?currencyCode,
    'currentPeriodChargedLeads': ?currentPeriodChargedLeads,
    'currentPeriodConnectedPhoneCalls': ?currentPeriodConnectedPhoneCalls,
    'currentPeriodPhoneCalls': ?currentPeriodPhoneCalls,
    'currentPeriodTotalCost': ?currentPeriodTotalCost,
    'impressionsLastTwoDays': ?impressionsLastTwoDays,
    'phoneLeadResponsiveness': ?phoneLeadResponsiveness,
    'previousPeriodChargedLeads': ?previousPeriodChargedLeads,
    'previousPeriodConnectedPhoneCalls': ?previousPeriodConnectedPhoneCalls,
    'previousPeriodPhoneCalls': ?previousPeriodPhoneCalls,
    'previousPeriodTotalCost': ?previousPeriodTotalCost,
    'totalReview': ?totalReview,
  };
}