supply method Null safety

Future<LedgerSupply> supply ()

Get the current supply reported by the ledger.

Throws an AlgorandException if there is an HTTP error. Returns the current supply reported by the ledger.

Implementation

Future<LedgerSupply> supply() async {
  return await _nodeRepository.supply();
}