enumerated method

Iterable<List> enumerated()

Implementation

Iterable<List<dynamic>> enumerated() => zip(<Iterable<dynamic>>[
      mapIndexed((int index, dynamic element) => index),
      this
    ]);