removeImage method

dynamic removeImage({
  1. required bool notify,
})

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();
}