PhoneConnection constructor

const PhoneConnection({
  1. required bool tcp,
  2. required int id,
  3. required String ip,
  4. required String ipv6,
  5. required int port,
  6. required Uint8List peerTag,
})

Phone Connection constructor.

Implementation

const PhoneConnection({
  required this.tcp,
  required this.id,
  required this.ip,
  required this.ipv6,
  required this.port,
  required this.peerTag,
}) : super._();