genesis method Null safety

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();
}