getTransactionCount method
Implementation
Future<BigInt> getTransactionCount(EvmAddr address,
{String block = 'latest'}) async {
final result = await _rpc(
'eth_getTransactionCount', [address.toString(), block]) as String;
return BigInt.parse(result.substring(2), radix: 16);
}