capture method

Future<Uint8List?> capture()

Implementation

Future<Uint8List?> capture() async {
  // if (!isCapturing) {
  //   isCapturing = true;
  //   Uint8List? imgFile;
  //   try {
  //     imgFile = await _screenshotController.capture(pixelRatio: 3.0);
  //     isCapturing = false;
  //   } catch (e) {
  //     isCapturing = false;
  //   }
  //   return imgFile;
  // }
  return null;
}