checkForUpdate method

Future<void> checkForUpdate()

Checks for an available Android update without interrupting active play.

Implementation

Future<void> checkForUpdate() => _backgroundCheck ??= _checkForUpdate()
    .whenComplete(() => _backgroundCheck = null);