updateContent method

Future updateContent(
  1. Map<String, ContentOverlayType> files
)

Update the content of one or more files. Files that were previously updated but not included in this update remain unchanged. This effectively represents an overlay of the filesystem. The files whose content is overridden are therefore seen by server as being files with the given content, even if the files do not exist on the filesystem or if the file path represents the path to a directory on the filesystem.

Implementation

Future updateContent(Map<String, ContentOverlayType> files) =>
    _call('analysis.updateContent', {'files': files});