lastIndexOf method

Future<int> lastIndexOf(
  1. E e, [
  2. int? start
])

Refer to List.lastIndexOf.

Implementation

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