callCastedArgumentA<R, A> method

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

Calls f casting A as arguments0 T.

Implementation

// ignore: avoid_types_as_parameter_names
R callCastedArgumentA<R, A>(R Function<A>() f) {
  var arg0 = _arguments[0];
  return arg0.callCasted(f);
}