captureScreenShot static method

Future<void> captureScreenShot(
  1. String streamId, [
  2. bool? isLocal
])

Implementation

static Future<void> captureScreenShot(String streamId,
    [bool? isLocal]) async {
  await _channel.invokeMethod(
      'captureScreenShot', {'streamId': streamId, 'isLocal': isLocal});
}