EthereumByteAddress constructor

EthereumByteAddress(
  1. ByteData data
)

If the length is greater than addressByteLength then only addressByteLength are taken. If the length is less than addressByteLength the size is padded to addressByteLength with 0's

Implementation

EthereumByteAddress(ByteData data) {
  _setData(data);
}