toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final adScheduleTargets = this.adScheduleTargets;
final callConversionAction = this.callConversionAction;
final callConversionReportingState = this.callConversionReportingState;
final callOnly = this.callOnly;
final callTrackingEnabled = this.callTrackingEnabled;
final countryCode = this.countryCode;
final endDate = this.endDate;
final phoneNumber = this.phoneNumber;
final startDate = this.startDate;
final useSearcherTimeZone = this.useSearcherTimeZone;
return {
'adScheduleTargets': ?adScheduleTargets,
'callConversionAction': ?callConversionAction,
'callConversionReportingState': ?callConversionReportingState,
'callOnly': ?callOnly,
'callTrackingEnabled': ?callTrackingEnabled,
'countryCode': ?countryCode,
'endDate': ?endDate,
'phoneNumber': ?phoneNumber,
'startDate': ?startDate,
'useSearcherTimeZone': ?useSearcherTimeZone,
};
}