removeImage method
Remove an image from the current page
Implementation
void removeImage(ImageBox imageBox) {
_imageBoxes[_currentPage]?.remove(imageBox);
_history[_currentPage]!.add(ImageAction(imageBox, isAdd: false));
notifyListeners();
}
Remove an image from the current page
void removeImage(ImageBox imageBox) {
_imageBoxes[_currentPage]?.remove(imageBox);
_history[_currentPage]!.add(ImageAction(imageBox, isAdd: false));
notifyListeners();
}