pipe<T1> method

T1 pipe<T1>(
  1. T1 fn(
    1. T
    )
)

Implementation

T1 pipe<T1>(T1 Function(T) fn) => fn(this);