removeOverlay method

bool removeOverlay(
  1. String path
)

Remove any overlay of the file at the given path. The state of the file in the base resource provider will not be affected.

Implementation

bool removeOverlay(String path) {
  return _overlays.remove(path) != null;
}