OSError 构造函数

const OSError([
  1. String message = "",
  2. int errorCode = noErrorCode
])

从消息和错误码创建一个 OSError 对象。

实现

@pragma("vm:entry-point")
const OSError([this.message = "", this.errorCode = noErrorCode]);