removeImage method

void removeImage(
  1. int index
)

Implementation

void removeImage(int index) {
  if (index >= 0 && index < _uploadedImages.length) {
    _uploadedImages.removeAt(index);
    notifyListeners();
  }
}