DiscoverResult constructor

const DiscoverResult({
  1. required List<String> supportedVersions,
  2. required ServerCapabilities capabilities,
  3. String? instructions,
  4. int? ttlMs,
  5. String? cacheScope,
  6. Map<String, dynamic>? serverInfo,
})

Implementation

const DiscoverResult({
  required this.supportedVersions,
  required this.capabilities,
  this.instructions,
  this.ttlMs,
  this.cacheScope,
  this.serverInfo,
});