phone method

Future<bool?> phone()

Open iOS settings in Phone section. returns operation successful or failure.

Implementation

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