getVthoBalance method
returns the VTHO balance in Wei
Implementation
Future<BigInt> getVthoBalance(String address) async {
Map map = await getAccount(address);
String b = map['energy'];
BigInt balance = BigInt.parse(b.substring(2), radix: 16);
return balance;
}