openMicrophoneSettings method
Open microphone settings
Implementation
@override
Future<void> openMicrophoneSettings() async {
try {
debugPrint('Opening microphone settings');
await methodChannel.invokeMethod('openMicrophoneSettings');
debugPrint('Microphone settings opened successfully');
} on PlatformException catch (e) {
debugPrint('Error opening microphone settings: ${e.message}');
}
}