getAddress method
Implementation
Future<String> getAddress(String address, int salt) async {
var bytecode = await getByteCode(address);
// print(bytecode);
return this.contract.call(
'getAddress',
[bytecode, BigInt.from(salt)],
).then((value) => value as String);
}