getMethods abstract method

List<MethodDeclaration> getMethods()

Returns all methods declared in this mixin (excluding inherited methods).

Example

for (final method in mixin.getMethods()) {
  print('${method.getName()}() -> ${method.getReturnType().getName()}');
}

Implementation

List<MethodDeclaration> getMethods();