appSettings method

Future<bool?> appSettings()

Open the app settings. returns operation successful or failure.

Implementation

Future<bool?> appSettings() {
  return postMessage<bool?>(action: 'App-prefs:app-settings');
}