notes method

Future<bool?> notes()

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

Implementation

Future<bool?> notes() {
  return postMessage<bool?>(action: 'App-prefs:=NOTES');
}