isContract function
Implementation
Future<bool> isContract(
String address,
) async {
try {
final code = await ethereum!.request("eth_getCode", [address, "latest"]);
return code != "0x";
} catch (e) {
print(e);
throw Exception("Could not get code");
}
}