fundamentals abstract method

Future<Fundamentals> fundamentals(
  1. SecurityIdentifier id
)

The fundamentals method is used to get the fundamentals for a given stock symbol.

The id argument is used to specify the stock id.

// Get fundamentals for Apple
final client = BavestRestClient(api_key);
final fundamentals = client.fundamentals(SecurityIdentifier(symbol: "AAPL"));

Implementation

Future<Fundamentals> fundamentals(SecurityIdentifier id);