setScreenshotIncluded static method

Future<void> setScreenshotIncluded(
  1. bool enabled
)

Sets screenshot included in report

Implementation

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