P2PPeer constructor

P2PPeer({
  1. required String id,
  2. required String name,
  3. required String publicKey,
  4. required String relayServer,
  5. required String version,
  6. required String? icon,
  7. required String? appURL,
})

Implementation

P2PPeer({
  required this.id,
  required this.name,
  required this.publicKey,
  required this.relayServer,
  required this.version,
  required this.icon,
  required this.appURL,
});