download method
Downloads scan results from cloud storage.
since — Only fetch results after this timestamp (incremental sync).
Implementation
@override
Future<List<ScanResult>> download({DateTime? since}) async {
// Stub: actual implementation would perform HTTP GET
return const [];
}