1
2
๐ Index & Element Access
Safely retrieves an element at a given
index, returning null if the index is out of bounds. Prevents RangeError.Gets the
index of the element, or returns null if the element doesnโt exist in the list.Gets the first element that satisfies the
test, or returns null if none is found. Prevents StateError without needing an orElse callback.