map<O> method

UITestChainNode<U, O, T> map<O>(
  1. O mapper(
    1. E e
    )
)

Implementation

UITestChainNode<U, O, T> map<O>(O Function(E e) mapper) =>
    UITestChainNode(testChainRoot, mapper(element), this as T);