ClusterNode constructor

const ClusterNode({
  1. required String pubkey,
  2. required String? gossip,
  3. required String? tpu,
  4. required String? rpc,
  5. required String? version,
  6. required u32? featureSet,
  7. required u16? shredVersion,
})

Information about a cluster node.

Implementation

const ClusterNode({
  required this.pubkey,
  required this.gossip,
  required this.tpu,
  required this.rpc,
  required this.version,
  required this.featureSet,
  required this.shredVersion,
});