softwareUpdate method

Future<bool?> softwareUpdate()

Open iOS settings in Software Update section. returns operation successful or failure.

Implementation

Future<bool?> softwareUpdate() {
  return postMessage<bool?>(
      action: 'App-prefs:General&path=SOFTWARE_UPDATE_LINK');
}