updateItemWithIndex method

IList<T> updateItemWithIndex(
  1. int index,
  2. T callUpdate(
    1. T old
    )
)

Implementation

IList<T> updateItemWithIndex(int index, T Function(T old) callUpdate) {
  return updateItemEx(this.get(index), callUpdate);
}