getBlockAtTopoHeight method
Returns a block at a specific topo height.
Implementation
Future<Block> getBlockAtTopoHeight(
GetBlockAtTopoHeightParams getBlockAtTopoHeightParams,
) async {
final result = await sendRequest(
DaemonMethod.getBlockAtTopoHeight,
getBlockAtTopoHeightParams.toJson(),
);
return Block.fromJson(result as Map<String, dynamic>);
}