ConnectInfo constructor
Implementation
ConnectInfo({
/// Will be passed into onConnect for processes that are listening for the
/// connection event.
String? name,
/// Whether the TLS channel ID will be passed into onConnectExternal for
/// processes that are listening for the connection event.
bool? includeTlsChannelId,
}) : _wrapped = $js.ConnectInfo(
name: name,
includeTlsChannelId: includeTlsChannelId,
);