.indexOf()
Published Feb 22, 2024
Contribute to Docs
In Dart, the .indexOf()
method returns the first occurrence of the given element in a list. If the element is not found, the method will return -1
.
Syntax
list_name.indexOf(element);
list_name
: The name of the list where the element is searched.element
: The value whose index is searched for in the list.
Example
Here is an example of the .indexOf()
method:
void main() {List<String> colors = ['blue', 'yellow', 'red', 'green', 'orange', 'pink'];int index = colors.indexOf('red');print(index);}
The output for the above example is as follows:
2
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.