hasOutOfBoundsChars method

bool hasOutOfBoundsChars(
  1. List<int> data
)

Implementation

bool hasOutOfBoundsChars(List<int> data) {
  return data.any((c) => c == -1);
}