updateIsAvailable method

Future<bool> updateIsAvailable()

This method checks for an update in the application store and returns if there is a newer version than the local one.

Implementation

Future<bool> updateIsAvailable() async {
  final localVer = await localVersion;
  final storeVer = await storeVersion;

  return storeVer > localVer;
}