setScreenShotMenuVisible static method

Future<void> setScreenShotMenuVisible(
  1. bool visable
)

Implementation

static Future<void> setScreenShotMenuVisible(bool visable) async {
  if(!isSupported)
  {
    return;
  }
  if(visable)
  {
    return await _channel.invokeMethod('showScreenShotMenu');
  }
  else
  {
    return await _channel.invokeMethod('hideScreenShotMenu');

  }
}