staticMethodsWhere method

Iterable<StaticMethodReflection<O, dynamic>> staticMethodsWhere(
  1. bool test(
    1. StaticMethodReflection<O, dynamic> f
    )
)

Returns a List of static methods MethodReflection that matches test.

Implementation

Iterable<StaticMethodReflection<O, dynamic>> staticMethodsWhere(
    bool Function(StaticMethodReflection<O, dynamic> f) test) {
  return allStaticMethods().where(test);
}