getAddress method

Future<String> getAddress(
  1. String address,
  2. int salt
)

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);
}