indexOf method
The first index of element
in this list.
Searches the list from index start
to the end of the list.
The first time an object o
is encountered so that o == element
,
the index of o
is returned.
final notes = <String>['do', 're', 'mi', 're'];
print(notes.indexOf('re')); // 1
final indexWithStart = notes.indexOf('re', 2); // 3
Returns -1 if element
is not found.
final notes = <String>['do', 're', 'mi', 're'];
final index = notes.indexOf('fa'); // -1
Implementation
@override
int indexOf(Object? element, [int start = 0]) =>
// Cast forced by ListMixin https://github.com/dart-lang/sdk/issues/31311
_filtered.indexOf(element as Element, start);