callCastedArgumentA<R, A> method

R callCastedArgumentA<R, A>(
  1. R f<A>()
)

Calls f casting A as arguments0 T.

Implementation

R callCastedArgumentA<R, A>(R Function<A>() f) {
  var arg0 = arguments[0];
  return arg0.callCasted(f);
}