processImageIsolate static method

Future<void> processImageIsolate(
  1. ProcessImageInput processImageInput
)

Implementation

static Future<void> processImageIsolate(
    ProcessImageInput processImageInput) async {
  EdgeDetection.processImage(processImageInput.inputPath,
      processImageInput.edgeDetectionResult, processImageInput.rotation);
  processImageInput.sendPort!.send(true);
}