FileSystemException 构造函数

const FileSystemException([
  1. String message = "",
  2. String? path = "",
  3. OSError? osError
])

创建一个新的文件系统异常,包含可选部分。

创建一个包含 FileSystemException.messageFileSystemException.pathFileSystemException.osError 值的异常,这些值来自同名可选参数。

如果省略,则 messagepath 路径默认为空字符串,而 osError 默认为 null

实现

const FileSystemException([this.message = "", this.path = "", this.osError]);