openSettings method

Future<void> openSettings()

Implementation

Future<void> openSettings() async {
  try {
    await _platform.invokeMethod('openSettings');
  } catch (e) {
    print("Failed to open settings: $e");
  }
}