Network constructor

Network(
  1. String networkPassphrase
)

Creates a new Network object to represent a network with a given networkPassphrase.

Implementation

Network(String networkPassphrase) {
  this._networkPassphrase =
      checkNotNull(networkPassphrase, "networkPassphrase cannot be null");
}