toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final maxConnections = this.maxConnections;
  final maxPendingRequests = this.maxPendingRequests;
  final maxRequests = this.maxRequests;
  final maxRequestsPerConnection = this.maxRequestsPerConnection;
  final maxRetries = this.maxRetries;
  return {
    'maxConnections': ?maxConnections,
    'maxPendingRequests': ?maxPendingRequests,
    'maxRequests': ?maxRequests,
    'maxRequestsPerConnection': ?maxRequestsPerConnection,
    'maxRetries': ?maxRetries,
  };
}