removeImage method
Implementation
removeImage({required bool notify}) {
if(!kIsWeb) if(_fromLoading) if(_file != null) if(_file!.path != null) File(_file!.path!).delete();
_file = null;
_hasImage = false;
if(notify) notifyListeners();
}
removeImage({required bool notify}) {
if(!kIsWeb) if(_fromLoading) if(_file != null) if(_file!.path != null) File(_file!.path!).delete();
_file = null;
_hasImage = false;
if(notify) notifyListeners();
}