SocketConfig constructor

SocketConfig({
  1. required InternetAddress address,
  2. required int port,
  3. required int connectionCheckIntervalSeconds,
  4. required String? privateKeyPath,
})

Implementation

SocketConfig({
  required this.address,
  required this.port,
  required this.connectionCheckIntervalSeconds,
  required this.privateKeyPath,
});