indexOf method

Future<int> indexOf(
  1. E e, [
  2. int start = 0
])

Refer to List.indexOf.

Implementation

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