IndexError 构造函数
- @ deprecated("使用 IndexError.withLength 代替。")
创建一个新的 IndexError,表明 invalidValue
不是一个有效的 indexable
的索引。
length
是错误发生时 indexable
的长度。如果 length
被省略,则默认为 indexable.length
。
消息被用作错误字符串表示的一部分。
实现
@Deprecated("Use IndexError.withLength instead.")
IndexError(int invalidValue, dynamic indexable,
[String? name, String? message, int? length])
: this.indexable = indexable,
// ignore: avoid_dynamic_calls
this.length = length ?? indexable.length,
super.value(invalidValue, name, message ?? "Index out of range");