writeOnly常量

FileMode const writeOnly

仅用于打开文件进行写入的模式。如果文件已存在,则将被覆盖。如果文件不存在,则将被创建。

实现

static const writeOnly = const FileMode._internal(3);