toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final connectorName = this.connectorName;
final debugOptions = this.debugOptions;
final item = this.item;
return {
'connectorName': ?connectorName,
'debugOptions': ?debugOptions,
'item': ?item,
};
}