NodeInfoApplicationVersion constructor

NodeInfoApplicationVersion({
  1. required String version,
  2. String? name,
  3. String? serverName,
  4. String? clientName,
  5. String? commit,
  6. String? buildTags,
  7. String? go,
  8. List<String>? buildDeps,
})

Represents a response from the node_info endpoint from the blockchain.

Implementation

NodeInfoApplicationVersion({
  required this.version,
  this.name,
  this.serverName,
  this.clientName,
  this.commit,
  this.buildTags,
  this.go,
  this.buildDeps,
});