createFile 方法

File createFile(
  1. String path
)

为给定的 path 创建一个新的 File 对象。

当此覆盖安装后,此函数将覆盖 new File()new File.fromUri() 的行为。

实现

File createFile(String path) => new _File(path);