etfCountry abstract method

The etfCountry method is used to get the ETF country for a given ETF symbol.

The id argument is used to specify the ETF id e.g. symbol

// Get ETF country for SPY
final client = BavestRestClient(api_key);
final etfCountry = client.etfCountry('SPY');

Implementation

Future<EtfCountry> etfCountry(SecurityIdentifier id);