toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final delayThreshold = this.delayThreshold;
final elementCountLimit = this.elementCountLimit;
final elementCountThreshold = this.elementCountThreshold;
final flowControlByteLimit = this.flowControlByteLimit;
final flowControlElementLimit = this.flowControlElementLimit;
final flowControlLimitExceededBehavior =
this.flowControlLimitExceededBehavior;
final requestByteLimit = this.requestByteLimit;
final requestByteThreshold = this.requestByteThreshold;
return {
'delayThreshold': ?delayThreshold,
'elementCountLimit': ?elementCountLimit,
'elementCountThreshold': ?elementCountThreshold,
'flowControlByteLimit': ?flowControlByteLimit,
'flowControlElementLimit': ?flowControlElementLimit,
'flowControlLimitExceededBehavior': ?flowControlLimitExceededBehavior,
'requestByteLimit': ?requestByteLimit,
'requestByteThreshold': ?requestByteThreshold,
};
}