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