createFile 方法

File createFile(
  1. String path
)

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

当此覆盖被安装时,此函数覆盖了 new File()new File.fromUri() 的行为。

实现

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