balance abstract method
The balance method is used to get the balance sheet for a given stock symbol.
By default, the balance sheet is returned in EUR. You can specify a different currency
by passing the currency
argument.
The mode
argument is used to specify the mode of the balance sheet.
The id
argument is used to specify the stock id.
The currency
argument is used to specify the currency.
// Get balance sheet for Apple in EUR
final client = BavestRestClient(api_key);
final balance = client.balance(SecurityIdentifier(symbol: "AAPL"), currency: 'EUR', mode: FinancialsMode.annual);
Implementation
Future<Balance> balance(SecurityIdentifier id,
{String? currency, Freq mode = Freq.annual});