lastIndexOf<T> function

int lastIndexOf<T>(
  1. List<T> list
)

Implementation

int lastIndexOf<T>(List<T> list) {
  return list.length - 1;
}