Redirect your app to Native Settings
Open specified System settings by your app.
Package — app_settings
If, you want to redirect your app to native settings, follow these steps-
Installing steps -
- Run this command with Flutter:
$ flutter pub add app_settings
or add this to your package’s pubspec.yaml
file:
dependencies:
app_settings: ^4.1.0
2. Install packages
$ flutter pub get
3. Now in your Dart code, you can use:
import 'package:app_settings/app_settings.dart';
Coding Part -
Just call class called AppSettings
& you can choose any functionality that you want.

Some Other use cases -

If you want, you can open it as another task.
To do so, just add asAnotherTask: true
;

That’s all for now. Thank you for reading this article.
See you next time 🙌.