download method

  1. @override
Future<List<ScanResult>> download({
  1. DateTime? since,
})
override

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 [];
}