capture method

Future<Uint8List?> capture()

Implementation

Future<Uint8List?> capture() async {
  if (!_running) {
    return null;
  }
  return _channel.invokeMethod('capture', {});
}