methodsWhere method

Iterable<MethodReflection<O, dynamic>> methodsWhere(
  1. bool test(
    1. MethodReflection<O, dynamic> f
    ), [
  2. 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);
}