FormatException 构造函数

const FormatException(
  1. [String message = "",
  2. dynamic source,
  3. int? offset]
)

创建一个新的可选错误 FormatException

可选地,还可以提供实际具有不正确格式的 source,以及在格式中检测到问题的 offset

实现

@pragma("vm:entry-point")
const FormatException([this.message = "", this.source, this.offset]);