openAppSettings method

  1. @override
Future<bool> openAppSettings()

Opens the App settings page.

Returns true if the app settings page could be opened, otherwise false is returned.

Implementation

@override
Future<bool> openAppSettings() async => _methodChannel
    .invokeMethod<bool>('openAppSettings')
    .then((value) => value ?? false);