profile abstract method
The profile method is used to get the profile for a given stock symbol. Market capitalisation is adjusted by the specified currency and is NOT in million. The zip code, isin and city can be empty.
The id
argument is used to specify the stock id.
// Get profile for Apple
final client = BavestRestClient(api_key);
final profile = client.profile(SecurityIdentifier(symbol: "AAPL"));
Implementation
Future<CompanyProfile> profile(SecurityIdentifier id);