lastIndexOf 抽象方法

int lastIndexOf(
  1. E element,
  2. [int? start]
)

此列表中element的最后一个索引。

从索引start开始向列表末尾搜索。

第一次遇到对象o使得o == element时,返回o的索引。

final notes = <String>['do', 're', 'mi', 're'];
const startIndex = 2;
final index = notes.lastIndexOf('re', startIndex); // 1

如果未提供start,则此方法从列表末尾开始搜索。

final notes = <String>['do', 're', 'mi', 're'];
final index = notes.lastIndexOf('re'); // 3

如果未找到element,则返回-1。

final notes = <String>['do', 're', 'mi', 're'];
final index = notes.lastIndexOf('fa'); // -1

实现

int lastIndexOf(E element, [int? start]);