WCPeerMeta constructor

WCPeerMeta({
  1. required String name,
  2. required String url,
  3. required String description,
  4. List<String> icons = const [],
})

Implementation

WCPeerMeta({
  required this.name,
  required this.url,
  required this.description,
  this.icons = const [],
});