openAppSettings function

Future<bool> openAppSettings()

Will open the App settings page. iOS opens only common settings page - limited by os Web no settings available Android - opens setting pages

 await  openAppSettings();

Returns true if the location settings page could be opened, otherwise or false if not.

Implementation

Future<bool> openAppSettings() async {
  final response = await _platform.openAppSettings();
  return response;
}