getByteCode method
Implementation
Future<Uint8List> getByteCode(String address) async {
return this.contract.call(
'getBytecode',
[EthereumAddress.fromHex(address), EthereumAddress.fromHex(entryPoint)],
).then((value) => value as Uint8List);
}