callWithType<R> method

R callWithType<R>(
  1. R action<T>()
)
inherited

Perform action with T as type argument.

Implementation

R callWithType<R>(R Function<T>() action) => action<T>();