toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final connection = this.connection;
final endpoint = this.endpoint;
final maxBatchingRows = this.maxBatchingRows;
final userDefinedContext = this.userDefinedContext;
return {
'connection': ?connection,
'endpoint': ?endpoint,
'maxBatchingRows': ?maxBatchingRows,
'userDefinedContext': ?userDefinedContext,
};
}