updateLast method

IList<T> updateLast(
  1. T callUpdate(
    1. T old
    )
)

Implementation

IList<T> updateLast(T Function(T old) callUpdate) {
  return updateItemEx(last, callUpdate);
}