ClientMetadata constructor
ClientMetadata({})
Implementation
ClientMetadata({
required this.name,
String? domain,
this.version = '1.0.0',
Map<String, String> attributes = const {},
}) : domain = domain ?? name,
attributes = Map.unmodifiable(Map.of(attributes));