saveImage static method

void saveImage(
  1. Uint8List? data
)

Implementation

static void saveImage(Uint8List? data) {
  try {
    if (data != null && Application.config.isSaveCapture) {
      PhotoManager.editor.saveImage(data);
    }
  } catch (e) {
    UtilLogger.log(e);
  }
}