setShowUIControls method
Implementation
Future<void> setShowUIControls(bool show) async {
if (_methodChannel != null) {
try {
await _methodChannel!.invokeMethod('setShowUIControls', {'show': show});
} catch (e) {
logInfo('Error setting UI controls: $e');
}
}
}