checkForUpdates method

Future<void> checkForUpdates({
  1. bool? inBackground,
})

Asks the server whether there is an update. You must call setFeedURL before using this API.

Implementation

Future<void> checkForUpdates({bool? inBackground}) {
  return _platform.checkForUpdates(
    inBackground: inBackground,
  );
}