getAssetBalance method
Implementation
Future<ScripthashAssetBalances> getAssetBalance(scripthash) async {
var proc = 'blockchain.scripthash.get_asset_balance';
dynamic balance = await request(proc, [scripthash]);
return ScripthashAssetBalances(
balance['confirmed'], balance['unconfirmed']);
}