getMethods abstract method
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();