search abstract method

Future<SearchResult> search(
  1. String query
)

The search method is used to get the search for given symbols. The query argument is used to specify the query to search for.

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

Implementation

Future<SearchResult> search(String query);