IndexError.withLength 构造函数

  1. @Since("2.19")
IndexError.withLength(
  1. int invalidValue,
  2. int length,
  3. {Object? indexable,
  4. String? name,
  5. String? message}
)

创建一个新的 IndexError,表示 invalidValue 不是一个有效的 indexable 索引。

长度 是错误发生时 indexable 的长度。

消息用于作为错误字符串表示的一部分。

实现

@Since("2.19")
IndexError.withLength(int invalidValue, this.length,
    {this.indexable, String? name, String? message})
    : super.value(invalidValue, name, message ?? "Index out of range");