ETHAddress.fromBytes constructor
Creates an ETHAddress instance from a bytes representing the address.
Implementation
factory ETHAddress.fromBytes(List<int> addrBytes) {
return ETHAddress(BytesUtils.toHexString(addrBytes, prefix: "0x"));
}
Creates an ETHAddress instance from a bytes representing the address.
factory ETHAddress.fromBytes(List<int> addrBytes) {
return ETHAddress(BytesUtils.toHexString(addrBytes, prefix: "0x"));
}