toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final excludeObjects = this.excludeObjects;
final includeObjects = this.includeObjects;
final pollingInterval = this.pollingInterval;
return {
'excludeObjects': ?excludeObjects,
'includeObjects': ?includeObjects,
'pollingInterval': ?pollingInterval,
};
}