indexOf method
Refer to List.indexOf.
Implementation
Future<int> indexOf(E e, [int start = 0]) async {
return (await this).indexOf(e, start);
}
Refer to List.indexOf.
Future<int> indexOf(E e, [int start = 0]) async {
return (await this).indexOf(e, start);
}