VirtualGatewayHttpConnectionPool.fromJson constructor

VirtualGatewayHttpConnectionPool.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory VirtualGatewayHttpConnectionPool.fromJson(Map<String, dynamic> json) {
  return VirtualGatewayHttpConnectionPool(
    maxConnections: json['maxConnections'] as int,
    maxPendingRequests: json['maxPendingRequests'] as int?,
  );
}