mapIndexed<T> method
Maps each element of this collection along with its index reactively.
Implementation
Coral<List<T>> mapIndexed<T>(T Function(int index, E element) convert) =>
coral.map((source) => List.unmodifiable(source.mapIndexed(convert)));