refetchFile method

void refetchFile()

Refetch the current file to reflect text changes

Note: File system operations are not supported on web. Set the text property directly to update content.

Implementation

void refetchFile() {
  throw UnsupportedError(
    "File system operations are not supported on web. Set the 'text' property directly.",
  );
}