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]);