forceWriteFile function

void forceWriteFile(
  1. String path,
  2. String content, {
  3. String? projectPath,
})

Implementation

void forceWriteFile(String path, String content, {String? projectPath}) {
  safeWriteFile(path, content, overwrite: true, projectPath: projectPath);
}