NodeInfo constructor
NodeInfo({
- required NodeInfoProtocolVersion protocolVersion,
- required String id,
- required Uri listenAddr,
- required String network,
- required String version,
- required String channels,
- required String moniker,
- required NodeInfoOther other,
Represents a response from the node_info endpoint from the blockchain.
Implementation
NodeInfo({
required this.protocolVersion,
required this.id,
required this.listenAddr,
required this.network,
required this.version,
required this.channels,
required this.moniker,
required this.other,
});