getBalance method

Future<double> getBalance()

getBalance RPC returns the balance of a wallet address

Implementation

Future<double> getBalance() async {
  return getBalanceByAddr(this.address, config: this.walletConfig);
}