Node constructor

Node({
  1. String? buildVersion,
  2. List<String>? clientFeatures,
  3. String? cluster,
  4. List<Extension>? extensions,
  5. String? id,
  6. List<Address>? listeningAddresses,
  7. Locality? locality,
  8. Map<String, Object?>? metadata,
  9. BuildVersion? userAgentBuildVersion,
  10. String? userAgentName,
  11. String? userAgentVersion,
})

Implementation

Node({
  this.buildVersion,
  this.clientFeatures,
  this.cluster,
  this.extensions,
  this.id,
  this.listeningAddresses,
  this.locality,
  this.metadata,
  this.userAgentBuildVersion,
  this.userAgentName,
  this.userAgentVersion,
});