I've been looking through some of the livedoc pages and blogs online, but I can't seem to get an answer to this question (or I'm missing it).

Is it possible to set up a Class to have a Default Parameter as a new function? hopefully that makes sense.

An example of Default Parameters:
Code:
function sayHello(somebody:String = “world”):void {
     trace(”hello, “+somebody);
}
If so, what is the syntax for it?