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