getBlockByNumber method
Gets a block by number.
Implementation
Future<Map<String, dynamic>?> getBlockByNumber(String block,
[bool fullTx = false]) async {
return call<Map<String, dynamic>?>('eth_getBlockByNumber', [block, fullTx]);
}
Gets a block by number.
Future<Map<String, dynamic>?> getBlockByNumber(String block,
[bool fullTx = false]) async {
return call<Map<String, dynamic>?>('eth_getBlockByNumber', [block, fullTx]);
}