ResolvedBonsoirService.ignoreNorms constructor

ResolvedBonsoirService.ignoreNorms({
  1. required String name,
  2. required String type,
  3. required int port,
  4. Map<String, String> attributes = const {},
  5. required String? host,
})

Creates a new resolved Bonsoir service. name, type and attributes will not be filtered.

Be aware that some network environments might not support non-conformant service names.

Implementation

ResolvedBonsoirService.ignoreNorms({
  required super.name,
  required super.type,
  required super.port,
  super.attributes,
  required this.host,
});