getRecentFilings abstract method
Fetch recent SEC filings for a company.
forms filters by form type (e.g., ['8-K', '10-K']).
limit caps the number of filings returned.
Implementation
Future<List<SecFiling>> getRecentFilings(
String ticker, {
List<String>? forms,
int limit = 10,
});