genesis method

Future<String> genesis()

Gets the genesis information.

Throws an AlgorandException if there is an HTTP error. Returns the entire genesis file in json.

Implementation

Future<String> genesis() async {
  return await _nodeRepository.genesis();
}