getBalance method
Implementation
Future<BalanceResponse?> getBalance(GetBalanceOptions options) async {
Commitment commitment = _getCommitment(options.commitment);
return accountApi.getBalance(
sdkConfig.environment,
sdkConfig.index,
options.account,
commitment,
);
}