reflectionNoSuchInvokableError function
dynamic
reflectionNoSuchInvokableError()
Implementation
dynamic reflectionNoSuchInvokableError(
Object? receiver,
String memberName,
List positionalArguments,
Map<Symbol, dynamic>? namedArguments,
StringInvocationKind kind,
) {
throw ReflectionNoSuchMethodError(
receiver,
memberName,
positionalArguments,
namedArguments,
kind,
);
}