staticMethodResolver<R> method

ElementResolver<StaticMethodReflection<O, R>> staticMethodResolver<R>(
  1. String methodName
)

Returns a ElementResolver for a MethodReflection for a static method with methodName.

Implementation

ElementResolver<StaticMethodReflection<O, R>> staticMethodResolver<R>(
        String methodName) =>
    ElementResolver<StaticMethodReflection<O, R>>(
        () => staticMethod<R>(methodName));