getBlockInformation method
Implementation
Future<Block> getBlockInformation({
String blockNumber = 'latest',
bool isFull = false,
}) async {
final block = await _client.getBlockByNumber(blockNumber);
if (block == null) throw Exception('Block not found: $blockNumber');
return block;
}