getBlockInformation method
Implementation
Future<BlockInformation> getBlockInformation({
String blockNumber = 'latest',
bool isContainFullObj = true,
}) {
return _makeRPCCall<Map<String, dynamic>>('xcb_getBlockByNumber', [
blockNumber,
isContainFullObj,
]).then((json) => BlockInformation.fromJson(json));
}