getAddress method

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

Implementation

Future<List<dynamic>> getAddress(
    String address, int salt, List<String> modules) async {
  return this._contract.read(functionName: "getAddress", args: [
    EthereumAddress.fromHex(address),
    EthereumAddress.fromHex(entryPoint),
    BigInt.from(salt),
    modules,
  ]).then((value) => value as List<dynamic>);
}