errorsFor method
Recorded errors whose shard is shard (identity comparison).
Implementation
List<ObservedError> errorsFor(Shard shard) {
return _errors
.where((e) => identical(e.shard, shard))
.toList(growable: false);
}
Recorded errors whose shard is shard (identity comparison).
List<ObservedError> errorsFor(Shard shard) {
return _errors
.where((e) => identical(e.shard, shard))
.toList(growable: false);
}