init static method

void init()

Implementation

static void init() {
  if (ImageUtilsIsolate.initiated) {
    return;
  }
  print("ImageUtilsIsolate initialization");
  ImageUtilsIsolate.initiated = true;
  ImageUtilsIsolate.converterFromCameraToBytesIsolate = IsolateManager.create(
      _convertCameraImageToBytes,
      concurrent: 1,
      isDebug: false);
}