soundsAndHaptics method

Future<bool?> soundsAndHaptics()

Open iOS settings in Sounds & Haptics section. returns operation successful or failure.

Implementation

Future<bool?> soundsAndHaptics() {
  return postMessage<bool?>(action: 'App-prefs:Sounds');
}