operator | method

dynamic operator |(
  1. dynamic f(
    1. String
    )
)

Places the left-side String x into right-side Function f as single argument. Returns the function result f(x)

Implementation

operator | (Function(String) f) => f(this);