url property
String
get
url
URL to the filing on SEC EDGAR.
Implementation
String get url {
final accessionNoHyphens = accessionNumber.replaceAll('-', '');
final cikStr = cik.toString();
return 'https://www.sec.gov/Archives/edgar/data/$cikStr/$accessionNoHyphens/$primaryDocument';
}