getBalance method

Future<Balance> getBalance({
  1. String? apiKey,
})

Get the credit balance of the account/organization associated with the API key

Implementation

Future<Balance> getBalance({
  String? apiKey,
}) async {
  return _userService.getBalance(apiKey: apiKey ?? _apiKey);
}