start method
Implementation
Future<PrefetchBundle?> start() async {
final bundle = await _fetch();
_timer = Timer.periodic(pollInterval, (_) => _fetch());
return bundle;
}
Future<PrefetchBundle?> start() async {
final bundle = await _fetch();
_timer = Timer.periodic(pollInterval, (_) => _fetch());
return bundle;
}