spawnPeriodicUpdateCheckerIsolate method

Future<bool> spawnPeriodicUpdateCheckerIsolate(
  1. OnRelease onNewRelease, {
  2. Duration? interval,
  3. Release? currentRelease,
})

Spawns an Isolate with a periodic call to checkForUpdate.

See startPeriodicUpdateChecker.

Implementation

Future<bool> spawnPeriodicUpdateCheckerIsolate(OnRelease onNewRelease,
        {Duration? interval, Release? currentRelease}) =>
    _PeriodicUpdateCheckerController.sendTask(
        this, onNewRelease, interval, currentRelease);