openNotificationSettings method

  1. @override
Future<void> openNotificationSettings()
override

Open notification settings

Implementation

@override
Future<void> openNotificationSettings() async {
  try {
    await _methodChannel.invokeMethod('openNotificationSettings');
  } catch (e) {
    throw BluetoothException('Failed to open notification settings: $e');
  }
}