Address constructor

Address(
  1. String hrp,
  2. List<int> core
)

Implementation

Address(String hrp, List<int> core) {
  this.hrp = hrp;
  this.core = core;
}