setShowUIControls method

Future<void> setShowUIControls(
  1. bool show
)

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');
    }
  }
}