openAppSettings method

  1. @override
Future<bool> openAppSettings()
override

Implementation

@override
Future<bool> openAppSettings() async {
  try {
    final result = await methodChannel.invokeMethod('open_settings');
    return result;
  } on PlatformException catch (e) {
    return false;
  }
}