toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final apiKey = this.apiKey;
final host = this.host;
final reportingSettings = this.reportingSettings;
return {
'apiKey': ?apiKey,
'host': ?host,
'reportingSettings': ?reportingSettings,
};
}