getMethods function

Iterable<Method> getMethods(
  1. Class target
)

Implementation

Iterable<Method> getMethods(Class target) {
  List<Method> methods = [];

  methods.add(getStoryMethod(target));

  return methods;
}