etfProfile abstract method
The etfProfile method is used to get the ETF profile for a given ETF symbol.
The id
argument is used to specify the ETF id e.g. symbol.
// Get ETF profile for SPY
final client = BavestRestClient(api_key);
final etfProfile = client.etfProfile('SPY');
Implementation
Future<EtfProfile> etfProfile(SecurityIdentifier id);