FormatException 构造函数

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

创建一个新的 FormatException,带有一个可选的错误 消息

可选地也可以提供实际带有错误格式的 ,以及问题检测到的 偏移量

实现

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