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