NodeInfoProtocolVersion constructor

NodeInfoProtocolVersion({
  1. String? p2p,
  2. String? block,
  3. String? app,
})

Represents a response from the node_info endpoint from the blockchain.

Implementation

NodeInfoProtocolVersion({
  this.p2p,
  this.block,
  this.app,
});