updateFirst method

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

Implementation

IList<T> updateFirst(T Function(T old) callUpdate) {
  return updateItemEx(first, callUpdate);
}