staticMethodsWhere method
Iterable<StaticMethodReflection<O, dynamic> >
staticMethodsWhere(
- bool test(
- StaticMethodReflection<
O, dynamic> f
- StaticMethodReflection<
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);
}