reflectFunction method

  1. @override
ReflectedFunction? reflectFunction(
  1. Function function
)
override

Implementation

@override
ReflectedFunction? reflectFunction(Function function) {
  if (!functions.containsKey(function)) {
    throw ArgumentError('There is no reflection information available about $function.');
  }

  return functions[function];
}