setInvokeShakeOnScreenshot static method

Future<void> setInvokeShakeOnScreenshot(
  1. bool enabled
)

Sets if screenshot invoking is enabled.

Implementation

static Future<void> setInvokeShakeOnScreenshot(bool enabled) async {
  await _channel.invokeMethod('setInvokeShakeOnScreenshot', {
    'enabled': enabled,
  });
}