methodsWhere method
Iterable<MethodReflection<O, dynamic> >
methodsWhere(
- bool test(
- MethodReflection<
O, dynamic> f
- MethodReflection<
- O? obj
Returns a List of methods MethodReflection that matches test
.
Implementation
Iterable<MethodReflection<O, dynamic>> methodsWhere(
bool Function(MethodReflection<O, dynamic> f) test,
[O? obj]) {
return allMethods(obj).where(test);
}