HTTPClientConfig.single constructor
HTTPClientConfig.single({})
Implementation
factory HTTPClientConfig.single({
required XrayAddress address,
required int port,
int? level,
String? email,
String? username,
String? password,
Map<String, String>? headers,
}) => HTTPClientConfig(
address: address,
port: port,
level: level,
email: email,
username: username,
password: password,
headers: headers,
);