Consider a method
def public Set<AgeRange> getAgeRanges(boolean excludeSenior) {
-- something ---
}
how to write ExpandoMetaClass for this like
ClassName.metaClass.methodName << { boolean excludeSenior->
-- something ---
}
I tried this in the Groovy console and it worked: