getStorageAt method
Returns the Bytes32 value of the position pos at address, as of the blockTag.
Implementation
Future<String> getStorageAt(String address, int pos, [dynamic blockTag]) =>
call<String>('getStorageAt',
blockTag == null ? [address, pos] : [address, pos, blockTag]);